android 自定义 dialogpreference,android-更改“ DialogPreference”的突出显示颜...

您需要做的只是DialogPreference的子类,然后调用Resource.getIdentifier来定位要主题化的每个View,就像您在做的一样,但是您不需要调用Window.getDecorView.这是一个例子:

自定义DialogPreference

public class CustomDialogPreference extends DialogPreference {

public CustomDialogPreference(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

}

public CustomDialogPreference(Context context, AttributeSet attrs) {

super(context, attrs);

}

/**

* {@inheritDoc}

*/

@Override

protected void showDialog(Bundle state) {

super.showDialog(state);

final Resources res = getContext().getResources();

final Window window = getDialog().getWindow();

final int green = res.getColor(android.R.color.holo_green_dark);

// Title

final int titleId = res.getIdentifier("alertTitle", "id", "android");

final View title = window.findViewById(titleId);

if (title != null) {

((TextView) title).setTextColor(green);

}

// Title divider

final int titleDividerId = res.getIdentifier("titleDivider", "id", "android");

final View titleDivider = window.findViewById(titleDividerId);

if (titleDivider != null) {

titleDivider.setBackgroundColor(green);

}

// Button views

window.findViewById(res.getIdentifier("button1", "id", "android"))

.setBackgroundDrawable(res.getDrawable(R.drawable.your_selector));

window.findViewById(res.getIdentifier("button2", "id", "android"))

.setBackgroundDrawable(res.getDrawable(R.drawable.your_selector));

window.findViewById(res.getIdentifier("button3", "id", "android"))

.setBackgroundDrawable(res.getDrawable(R.drawable.your_selector));

}

}

XML首选项

android:dialogMessage="Message"

android:negativeButtonText="Cancel"

android:positiveButtonText="Okay"

android:title="Title" />

自定义选择器

备用选择器

自定义 Android DialogPreference,您可以按照以下步骤进行操作: 1. 创建一个新的类,扩展 DialogPreference 类,并实现构造函数和 onDialogClosed() 方法。 ```java public class CustomDialogPreference extends DialogPreference { public CustomDialogPreference(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onDialogClosed(boolean positiveResult) { super.onDialogClosed(positiveResult); if (positiveResult) { // 在此处保存用户的选择 } } } ``` 2. 在 res/values/ 文件夹下创建一个名为 attrs.xml 的文件,在其定义自定义属性。 ```xml <resources> <declare-styleable name="CustomDialogPreference"> <attr name="custom_attr" format="string" /> </declare-styleable> </resources> ``` 3. 在 res/layout/ 文件夹下创建一个 XML 布局文件,定义您的自定义对话框布局。 ```xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content"> <!-- 在此处添加您的布局元素 --> </LinearLayout> ``` 4. 在 CustomDialogPreference添加 showDialog() 方法,并在其加载您的自定义对话框布局。 ```java public class CustomDialogPreference extends DialogPreference { public CustomDialogPreference(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onDialogClosed(boolean positiveResult) { super.onDialogClosed(positiveResult); if (positiveResult) { // 在此处保存用户的选择 } } @Override protected void showDialog(Bundle state) { super.showDialog(state); Dialog dialog = getDialog(); dialog.setContentView(R.layout.custom_dialog_layout); // 在此处添加逻辑来初始化对话框元素 } } ``` 5. 在您的首选项 XML 文件使用 CustomDialogPreference。 ```xml <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <com.example.CustomDialogPreference android:key="custom_dialog_preference" android:title="Custom Dialog Preference" custom_attr="some value" /> </PreferenceScreen> ``` 注意:在步骤 5 ,您需要将 com.example 替换为您的应用程序的包名。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值