0

アンドロイド初心者です。

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>

main.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);

しかし、「@ + id/line」で表示すると、ヘッダーに非表示になるのはなぜですか?

4

4 に答える 4

0

TextView を ListView の上に直接配置できます。ヘッダーを追加する必要はありません。ヘッダーのようです。

<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" >

<TextView android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:text="header"
    android:padding="50dp"
    android:id="@+id/text4"/>

    <View android:layout_height="2dp"
        android:layout_width="match_parent"
        android:id="@+id/line"
        android:layout_below="@+id/text4"
        android:background="@android:color/white"/>

    <ListView android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/lv"/>

</FrameLayout>
于 2013-09-05T08:05:47.117 に答える
0

ヘッダービューをフォーマットする必要があります-test.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="afassa" />

    <View
        android:id="@+id/line"
        android:layout_width="fill_parent"
        android:layout_height="1dp"
        android:background="#ffffff" />

</LinearLayout>
于 2013-09-05T08:33:22.737 に答える