我正在更新有人在几年前制作的应用,并且我一直试图添加一个可见的页脚。我正在努力将其添加到我的某项活动中,但结果如下:
这是我的.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<!-- Footer -->
<include layout="@layout/footer"/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/footer">
<TextView
android:id="@+id/list_items"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="22dp" >
</TextView>
</RelativeLayout>
这就是我称之为
的行setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, R.id.list_items, mRegions));
提前致谢!