データベースのアイテムが表示される設定画面があります。私は自分自身を作成することによってこれを機能させていPreferenceActivity
ます。アクティビティでは、DialogPreference
アイテムを作成し、それらをPreferenceCategory
画面上の設定アイテムのToスタイルに追加します。カスタムレイアウトを使用し、それを使用して適用します。setLayoutResource(R.layout.custom_pref_row)
これは基本的にImageButton
、レイアウトの右側に配置されたビューにを追加します。これはすべて正常に機能し、私の設定画面にはボタン付きのカスタムビューが表示されます。私の質問は、カスタムビューのボタンにクリックリスナーをアタッチするにはどうすればよいですか?View
からその列にたどり着く方法を見つけることができませんでしたPreferenceActivity
。アイテムが動的に作成されていない場合は、これをすべてXMLから実行してから、IDまたはボタンを参照できる可能性がありますが、リストを動的に作成しているため、これを実行できます。
ImageButton
各アイテムのハンドルを取得する方法について何か提案はありますか?最後に、削除確認ダイアログを起動するようにボタンを構成します。
R.layout.custom_pref_row:
<?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="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
android:gravity="center_vertical"
android:paddingRight="?android:attr/scrollbarSize">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dip"
android:layout_marginRight="6dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_weight="1">
<TextView android:id="@+android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLarge"
android:ellipsize="marquee"
android:fadingEdge="horizontal" />
<TextView android:id="@+android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"
android:maxLines="2" />
<ImageButton android:id="@+id/pref_delete_station" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ic_trash_can" android:layout_alignParentRight="true" android:background="@null"></ImageButton>
</RelativeLayout>
<!-- Preference should place its actual preference widget here. -->
<LinearLayout android:id="@+android:id/widget_frame"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical" />
</LinearLayout>
私のPreferenceActivityの関連部分:
DialogPreference diaPref;
for (Station mStation : sList) {
diaPref = new StationEditor(this.getPreferenceScreen().getContext(), null, this, mStation);
diaPref.setLayoutResource(R.layout.custom_pref_row);
diaPref.setTitle(mStation.getName());
diaPref.setKey(STATION_PREFIX + mStation.getId());
// add new preference
stationTypesCategory.addPreference(diaPref);
}