0

私はstackoverflowの固定ヘッダーと複数のデータ列についていくつか質問しましたが、最終的には理にかなっていると思うものを思いつきました。私は自分の目標に非常に近いと感じています。ここで問題となるのは、データが表示されなかったことです。log.iを実行したところ、データベースから正常に読み取られたことがわかりました。アダプターに問題があると思いますか?

アクティビティ:

パブリッククラスHistoryActivityはActivity{を拡張します

private static final String TAG = "HistoryActivity";
ListView lv;
SimpleAdapter sd;

RecordDAO dao = new RecordDAO(HistoryActivity.this);

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    Log.i(TAG, "onCreate");

    setContentView(R.layout.historyactivityheader);
    lv = (ListView) findViewById(R.id.list);
    ArrayList<Record> Records = new ArrayList<Record>();
    Records = (ArrayList<Record>) dao.findAll();


    ArrayList<HashMap<String, String>> aList = new ArrayList<HashMap<String, String>>();
    HashMap<String, String> map;

    for (int x = Records.size()-1; x >=0; x--)
    {
        map = new HashMap<String, String>();
        map.put("ID", String.valueOf(Records.get(x).getId()));
        ...

        aList.add(map);
    }

    sd = new SimpleAdapter(this, aList, R.layout.historyactivityrow,
            new String[]
            { "col1", "col2", "col3",
                    "col4" }, new int[]             
            { R.id.col1, R.id.col2, R.id.col3,
                     R.id.col4});


    lv.setAdapter(sd);




}

}

historyactivityheader.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:orientation="vertical" >


    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:clickable="true"
        android:orientation="horizontal"
        android:paddingBottom="6dip"
        android:paddingTop="4dip" >

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="col1"
            android:textColor="#FFFFFF"
            android:textSize="16dp" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="col2"
            android:textColor="#FFFFFF"
            android:textSize="16dp" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="col3"
            android:textColor="#FFFFFF"
            android:textSize="16dp" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="col4"
            android:textColor="#FFFFFF"
            android:textSize="16dp" />
    </LinearLayout>

    <ListView
    android:id="@+id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >
</ListView>


</LinearLayout>

historyactivityrow.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal"
    android:paddingBottom="6dip"
    android:paddingTop="4dip" >

    <TextView
        android:id="@+id/col1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textColor="#FFFFFF" />

    <TextView
        android:id="@+id/col2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="15dp"
        android:layout_weight="1"
        android:textColor="#FFFFFF" />

    <TextView
        android:id="@+id/col3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textColor="#FFFFFF" />

    <TextView
        android:id="@+id/col4"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textColor="#FFFFFF" />

</LinearLayout>
4

1 に答える 1

0

解決:

答えは、ヘッダーの高さがfill_parentを使用しているため、リストビューをカバーしているためです...そのような愚かな間違いです...したがって、次のように変更します。リストビューの幅をfill_parentに変更し、最後にヘッダーの高さをwrap_contentに変更します

于 2012-07-25T16:16:11.750 に答える