我对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>