gpt4 book ai didi

android - 当焦点在底部工作表对话框中时,textinputlayout 不会改变颜色

转载 作者:行者123 更新时间:2023-12-05 00:05:39 27 4
gpt4 key购买 nike

我有两个 textinputlayout,一个在 activty 中,一个在 bottom sheet dialog 中,两者具有相同的样式但外观不同,当我专注于 activity 中的 textinputlayout 时,笔划变为原色,第二个 textinputlayout 在底部工作表中当我集中注意力时对话框保持灰色 两者都有相同的东西

我的应用样式是 Theme.MaterialComponents.Light.NoActionBar这是 Activity 中的那个

    <com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColorHint="@color/colorGrey">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/add_contact_name_et"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="שם"
android:inputType="text"
android:singleLine="true"
android:textColor="@color/colorBlack" />
</com.google.android.material.textfield.TextInputLayout>

这是在底页对话框中

    <com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColorHint="@color/colorGrey">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/add_task_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:hint="משימה חדשה"
android:textSize="18dp"
android:maxLines="3"
android:textColor="@color/colorBlack"/>

最佳答案

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/id"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint"
app:boxStrokeColor="@color/color" <-- changes the stroke color
app:hintTextColor="@color/color"> <-- changes the hint text color

关于android - 当焦点在底部工作表对话框中时,textinputlayout 不会改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58390128/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com