我遇到了这个奇怪的问题,其中字段在开始时会EditText
改变颜色,因为如果有. 此外,这种情况并非每次都会发生,只有在某些情况下才会出现。如何修复此错误?任何帮助表示赞赏。更多请参考图片。这是代码Red
Activity
SetError
<android.support.design.widget.TextInputLayout
android:id="@+id/input_name"
style="@style/my_style_textInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp">
<EditText
android:id="@+id/edt_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Name:"
android:inputType="textPersonName"
android:singleLine="true"
android:textSize="@dimen/subHeading" />
</android.support.design.widget.TextInputLayout>
这是样式:
<style name="my_style_textInput" parent="@style/TextAppearance.AppCompat">
//hint color And Label Color in False State
<!--<item name="android:textColorHint">@color/item_color</item>-->
<!--<item name="android:textColor">@color/colorPrimary</item>-->
<item name="android:textSize">@dimen/caption</item>
//Label color in True State And Bar Color False And True State
<item name="colorAccent">@color/colorPrimary</item>
<item name="colorControlNormal">@color/colorPrimary</item>
<item name="colorControlActivated">@color/colorPrimaryAccent</item>
</style>