4

データベースのアイテムが表示される設定画面があります。私は自分自身を作成することによってこれを機能させてい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);
}
4

2 に答える 2

1

を拡張DialogPreferenceしてオーバーライドできますonBindDialogView(View view)。このメソッド内で実行できることは次のとおりです。

@Override
protected void onBindDialogView(View view) {

    ((ImageButton) view.findViewById(R.id.pref_delete_station)).setOnClickListener(new OnClickListener() {      
        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

        }
    });

    super.onBindDialogView(view);
}

のサブクラスはDialogPreference、それが表すアイテムに関連する任意の状態/値を保持できます。

拡張する一般的なガイドラインについては、この質問DialogPreferenceをご覧ください。

お役に立てれば!

于 2012-05-01T21:35:28.790 に答える
1

OK、ショパンは私に別の方向に考えさせました。Preferenceオブジェクトが、そのセレクターが設定画面にどのように表示されるかについても責任があることに気づきませんでした。

setLayoutResouce()関数は、設定画面に表示される行ではなく、ダイアログ自体のリソースを設定します。これは紛らわしく、設定画面でセレクターのレイアウトを調整するためにこれを誤って使用しようとしていました。

解決策は、そこでカスタムレイアウトをオーバーライドonCreateViewして返すことです。私にとって、これは直感に反します。なぜなら、その方法は通常、他のほとんどの状況で最終ビューを制御するからです。

私はすでに自分をサブクラス化したPreference (DialogPreference)ので、私がしなければならなかったのは以下を追加することだけでした...

@Override
protected View onCreateView (ViewGroup parent) {
    LayoutInflater inflater = (LayoutInflater)   getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View customRow = inflater.inflate(R.layout.preferences_station_list_row, null);
    ((ImageButton) customRow.findViewById(R.id.pref_delete_station)).setOnClickListener(new OnClickListener() {      
        @Override
        public void onClick(View v) {
           Log.i("c","clicked");
        }
    });

    customRow.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            showDialog(null);
        }
    });
    customRow.setClickable(true);
    return customRow;
}

私が遭遇した問題の1つは、最初は行自体がクリックできなくなったが、ボタンはクリックできたということでした。ビュー全体にリスナーを追加して手動で呼び出す必要がありましShowDialog(). た。現在欠落しているのは、[設定]画面からクリックしたときにアイテムにハイライトが表示されなくなることだけです。リストに通常のようにハイライトが表示されるように、どのスタイルを適用する必要があるか考えてみてください。

于 2012-05-02T07:15:44.577 に答える