首頁  >  文章  >  Java  >  如何建立每行都有靜態標題和動態文字的 ListView?

如何建立每行都有靜態標題和動態文字的 ListView?

Patricia Arquette
Patricia Arquette原創
2024-11-01 07:16:30499瀏覽

How to Create a ListView with a Static Header and Dynamic Text in Each Row?

使用靜態標題和動態文字自訂ListView 行版面配置

此問題涉及自訂ListView 行版面配置以包含靜態標題和動態文字改變文字。查詢者建立了一個 ListView,其中使用 ArrayAdapter 從 String 陣列填入數據,但在顯示所需的佈局格式時遇到困難。

解決方案:

實現指定的佈局,請按照以下步驟操作:

  1. 使用兩個TextView 建立自訂行佈局(row.xml):一個用於靜態標題,另一個用於動態文字。
  2. 定義主要活動 XML 佈局的相對佈局以包含 ListView。
  3. 實作一個自訂適配器,用於擴充行佈局並相應地設定資料。

適配器類別包括 getCount 等方法()、getItem()、getItemId() 和 getView(),它們處理資料處理和視圖建立。

  1. 在 Activity 的 onCreate() 方法中,將適配器設定為 ListView。

這是一個示例實現:

row.xml:

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

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

    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/text" />
</LinearLayout></code>

main.xml:

<code class="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="fill_parent"
    android:orientation="horizontal" >

    <ListView
        android:id="@+id/listview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    </ListView>

</LinearLayout></code>

自訂適配器:

<code class="java">class yourAdapter extends BaseAdapter {

    ...

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View vi = convertView;
        if (vi == null)
            vi = inflater.inflate(R.layout.row, null);
        TextView text = (TextView) vi.findViewById(R.id.text);
        text.setText(data[position]);
        return vi;
    }
}</code>

以上是如何建立每行都有靜態標題和動態文字的 ListView?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn