隐藏按钮......为什么?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="15dp"
android:orientation="vertical">
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/feed_list"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="More"
android:id="@+id/feed_more"/>
</LinearLayout>
答案 0 :(得分:6)
假设ListView
有足够的内容来填满整个屏幕,那么自从你告诉它wrap_content
后它就会出现。您可以使用权重来指示ListView
在按钮具有所需内容之后占用尽可能多的屏幕:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="15dp"
android:orientation="vertical">
<ListView
android:layout_width="fill_parent"
android:layout_height="0"
android:weight="1"
android:id="@+id/feed_list"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weight="0"
android:text="More"
android:id="@+id/feed_more"/>
答案 1 :(得分:1)
你需要给列表视图加权1。然后你的按钮就会显示出来。试试吧。