4

拡張された DialogPreference でスタイルをカスタマイズするにはどうすればよいですか?

public class AboutDialog extends DialogPreference {
    public AboutDialog(Context oContext, AttributeSet attrs)
    {
        super(oContext,attrs);
            //there is no such a thing like setBackground(int res_id)...
    }
}

そしてxmlで

<com.pak1.pak.About
    android:key="key" android:title="@string/preferences_about"
    android:dialogTitle="@string/preferences_about_title"
    android:dialogIcon="@drawable/app_icon" android:negativeButtonText="@null"
    android:positiveButtonText="@string/ok" />

または、たとえば、ボタンのプロパティを変更することは可能ですか?

OK ボタンが 1 つあり、たとえば、この「OK」ボタンの色を変更したいのですが、どうすればよいですか?

4

2 に答える 2

5

onCreateDialogViewをオーバーライドして、レイアウトを返します。

カスタムDialogPreferenceの作成については、たとえばMatthewWigginsによるこの例を参照してください。

http://android.hlidskialf.com/blog/code/android-seekbar-preference

またはここstackoverflowで

Android SeekBarPreference

于 2012-01-11T19:12:49.687 に答える
0

To set background of DialogPreference you can also use method

    DialogPreference.setDialogLayoutResource(R.layout.layout1);

and simple color resources, specified usually inside res/values/colors.xml:

    <color name="red">#ffff0000</color>

Refer to this resource via android:background="@color/red" in res/layout/layout1.xml. (More info about setting a background)

于 2013-08-22T16:51:24.823 に答える