如何更改应用程序中所有对话的样式?
我的应用程序正在使用一些"材料黑暗主题" ->我不知道为什么,所有对话框都具有"丑陋的灰色"颜色,我无法更改它!
我尝试了:
super(context, R.style.my_super_dialog_style);
,但我不能这样改变我的偏好!
我正在使用:
- 警报对话框
- 进度对话框
- 列表偏好(单击 ->带有选项之后也对话(
- MultiSelectPreference(就像3。(
- texteditpreference
我需要更改:
- 背景颜色
- 标题颜色
- 消息颜色
- 进度颜色(可选,4,6,7的颜色相同(
- 正/否定按钮文本颜色(可选,我正在通过Java更改(
- 复选框活动颜色(可选,是4,6,7的相同颜色(
- 无线电颜色(可选,是4,6,7的相同颜色(
顺便说一句,当我终于认为自己找到了颜色(通过"主题编辑器"(时,无法编辑颜色,因为它仅读取!当我制作该样式的副本时,它不起作用。
您可以使用自定义布局创建对话框。
首先,为您的对话框创建自定义布局
例如
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/dialogrectangle">
<TextView
android:id="@+id/sub_dialog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="dimen/marginTop"
android:textSize="@dimen/invalidSize"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:scaleType="fitXY"
android:layout_marginBottom="dimen/marginBotom"
android:src="@drawable/okay"/>
之后,创建对话框类
public class ViewDialog {
public void showDialog(View activity,int width,int height){
final Dialog dialog = new Dialog(activity.getContext());
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setCancelable(false);
dialog.setContentView(R.layout.custom_dialog);
ImageView dialogButton = (ImageView) dialog.findViewById(R.id.okay);
dialogButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
dialog.show();
Window window = dialog.getWindow();
window.setLayout(width, height);
}
}
然后使用这些行显示对话框您要显示的位置
ViewDialog dialog = new ViewDialog();
dialog.showDialog(view,width,height);
让我知道这是否有帮助。:(
我认为您必须定义自己的主题样式。不可能仅在某些属性窗口中更改所需属性。