如何更改 AlertDialog 中的 EditText 样式?
How to change EditText style in AlertDialog?
我在我的应用程序中添加了 Cyanea(一个主题引擎)并且更改了 EditText 样式(参见图片,颜色无关紧要。第一张图片是现在的样子,第二张是我想要的对话框看起来像)。如何改回旧的 EditText 样式?
我的代码:
dialog_input.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingBottom="4dp"
android:paddingTop="16dp">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/md_input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/subj_name_input_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:text="Hello, World!"
android:hint="@string/subject_name_dialog_hint"
android:inputType="text"
android:maxLines="1"
android:maxLength="32" />
</com.google.android.material.textfield.TextInputLayout>
</FrameLayout>
使用Widget.Design.TextInputLayout
风格:
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.Design.TextInputLayout"
我在我的应用程序中添加了 Cyanea(一个主题引擎)并且更改了 EditText 样式(参见图片,颜色无关紧要。第一张图片是现在的样子,第二张是我想要的对话框看起来像)。如何改回旧的 EditText 样式?
我的代码:
dialog_input.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingBottom="4dp"
android:paddingTop="16dp">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/md_input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/subj_name_input_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:text="Hello, World!"
android:hint="@string/subject_name_dialog_hint"
android:inputType="text"
android:maxLines="1"
android:maxLength="32" />
</com.google.android.material.textfield.TextInputLayout>
</FrameLayout>
使用Widget.Design.TextInputLayout
风格:
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.Design.TextInputLayout"