我想在列表视图的末尾添加一个按钮。我有以下xml文件。将显示列表视图及其内容,但该按钮不会显示。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/myListView" />
<Button
android:text="Project Download"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/download" />
</LinearLayout>
答案 0 :(得分:3)
问题在于ListView中的属性android:layout_height="match_parent"
。 match_parent
表示列表视图将填满所有空间。正确的方法是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<ListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:weight="1"
android:id="@+id/myListView" />
<Button
android:text="Project Download"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/download" />
</LinearLayout>
答案 1 :(得分:1)
您的按钮未显示,因为当您将 layout_height 设置为 match_parent 时,ListView占用了整个空间隐藏按钮。 match_parent 将占用整个可用空间。所以将它改为 wrap_content ,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_parent"
android:id="@+id/myListView" />
<Button
android:text="Project Download"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/download" />
</LinearLayout>
wrap_content 会将您的视图换行到最小可用高度/宽度,而不会隐藏任何内容或使其不清楚。
答案 2 :(得分:1)
我有同样的问题,并解决了。 你只需要将该布局包装到ScrollView
中<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_transaction_history"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</android.support.v7.widget.RecyclerView>
<Button
android:id="@+id/btn_history_load_more"
style="?borderlessButtonStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-medium"
android:paddingBottom="@dimen/margin_big"
android:paddingTop="@dimen/margin_large"
android:text="@string/text_btn_load_more"
android:textColor="#009CDE"
android:textSize="@dimen/text_size_medium" />
</LinearLayout>
</ScrollView>
答案 3 :(得分:0)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<Button
android:layout_alignParentBottom="true"
android:text="Project Download"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/download" />
<ListView
android:layout_above="@id/download"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/myListView" /></RelativeLayout>