ホームページ  >  記事  >  Java  >  各行に静的ヘッダーと動的テキストを含む ListView を作成するにはどうすればよいですか?

各行に静的ヘッダーと動的テキストを含む ListView を作成するにはどうすればよいですか?

Patricia Arquette
Patricia Arquetteオリジナル
2024-11-01 07:16:30504ブラウズ

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

静的ヘッダーと動的テキストを使用した ListView 行レイアウトのカスタマイズ

この質問は、静的ヘッダーと動的テキストを含む ListView 行レイアウトのカスタマイズに関するものです。テキストを変更します。質問者は、ArrayAdapter を使用して String 配列からデータを入力した ListView を作成しましたが、目的のレイアウト形式を表示するのが困難です。

解決策:

指定されたレイアウトを使用するには、次の手順に従います。

  1. 2 つの TextView を含むカスタム行レイアウト (row.xml) を作成します。1 つは静的ヘッダー用、もう 1 つは動的テキスト用です。
  2. 定義ListView を含めるメイン アクティビティ XML レイアウトの RelativeLayout。
  3. 行レイアウトを拡張し、それに応じてデータを設定するカスタム アダプターを実装します。

アダプター クラスには getCount などのメソッドが含まれます。 ()、getItem()、getItemId()、および getView() は、データ処理とビューの作成を処理します。

  1. アクティビティの 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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。