显示活动中片段下方的按钮

时间:2012-07-10 08:28:57

标签: android layout

我对Android很新。我有一个非常简单的布局,但还没有工作:

<LinearLayout android:layout_width="wrap_content"
          android:layout_height="wrap_content" 
          xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/relativeLayout">
    <fragment android:layout_width="fill_parent"
          android:layout_height="match_parent"
          android:name="pl.nscr.playwatch.MainActivity$WatchListFragment"
          android:id="@+id/watchlist"/>
    <Button android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:text="Start service"/>
</LinearLayout>

现在我的问题是片段跨越了活动中的整个可用高度。我希望能够在它下面看到那个按钮,但我实际上并不知道如何布置这个东西。

我尝试使用RelativeLayout,但最终我看到显示在片段上方的按钮看起来很难看。我做错了什么?

更新

显然这是一个愚蠢的错误。我又改回了RelativeLayout,但现在布局的宽度和高度设置为'fill_parent',一切都按预期工作。

<RelativeLayout android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/relativeLayout">
    <fragment android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:name="pl.nscr.playwatch.MainActivity$WatchListFragment"
            android:id="@+id/watchlist"
            android:layout_above="@+id/btnStartService"/>
    <Button android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:id="@id/btnStartService"
            android:text="Start service"/>
</RelativeLayout>

2 个答案:

答案 0 :(得分:2)

执行以下操作

  1. 将android:orientation =“vertical”属性添加到<LinearLayout>
  2. 将layout_weight =“1”属性添加到<fragment />

答案 1 :(得分:0)

android:orientation="vertical"添加到LinearLayout ..