ListViewのヘッダー文字

例えば、次のようなlayoutを作る。

group_list_header.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="horizontal">

<TextView
android:text="group name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView2"
android:layout_weight="2"/>
<TextView
android:text="show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView3"
android:layout_weight="1"
android:gravity="right"/>
</LinearLayout>

次に、ActivityのonCreateで次のように設定

val headerView = layoutInflater.inflate(R.layout.group_list_header, groupListView, false) as ViewGroup
groupListView.addHeaderView(headerView)

これでできるけど、groupListViewの中にswitchがあったため、ヘッダーの文字の位置がうまく合わなくていまいちだった。 groupListView の中身が文字だけならまぁまぁうまくいきそう。
ということで、今回は使わなかった。せっかく調べたので、記録として残す。

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です