静的ヘッダーと動的テキストを使用した ListView 行レイアウトのカスタマイズ
この質問は、静的ヘッダーと動的テキストを含む ListView 行レイアウトのカスタマイズに関するものです。テキストを変更します。質問者は、ArrayAdapter を使用して String 配列からデータを入力した ListView を作成しましたが、目的のレイアウト形式を表示するのが困難です。
解決策:
指定されたレイアウトを使用するには、次の手順に従います。
アダプター クラスには getCount などのメソッドが含まれます。 ()、getItem()、getItemId()、および getView() は、データ処理とビューの作成を処理します。
実装例は次のとおりです:
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 サイトの他の関連記事を参照してください。