我是android的初学者。
我尝试将标题添加到 ListView,但视图是隐藏的。
标题视图 - test.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:layout_height="wrap_content"
android:padding="50dp"
android:layout_width="wrap_content"
android:text="afassa"/>
<View android:layout_height="match_parent"
android:layout_width="2dp"
android:id="@+id/line"
android:layout_marginLeft="20dp"
android:background="#ffffff"/>
</RelativeLayout>
主要的.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ll"
>
<ListView android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/lv"/>
</FrameLayout>
添加标题
ListView lv = (ListView) findViewById(R.id.lv);
View v = View.inflate(this,R.layout.test,null);
lv.addHeaderView(v);
lv.setAdapter(aa);