我想将文本视图作为标题添加到listview.Here是文本视图text_view_layout.xml布局的代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/lay2">
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Header List View"
android:textColor="@color/white"
android:textAppearance="?android:attr/textAppearanceLarge"
/>
</RelativeLayout>
这是listview widget_layout.xml的代码
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listViewWidget"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
/>
以下是我用于在listview上方添加文本视图的代码:
RemoteViews remote = new RemoteViews(context.getPackageName(), R.layout.text_view_layout);
RemoteViews textView = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
remote.addView(R.id.lay2, textView);
这只显示文本视图,而不是列表视图。