我有一个列表视图,它将被填充,AsyncTask
并且在应用程序的底部边缘我需要显示一个固定的覆盖布局,如下所示:
但我不知道如何在 xml 中做到这一点?这是我现在的 layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<!-- Probably I need to do something here -->
</LinearLayout>