我有一个嵌入片段的activity_edit_profile.xml布局,但 EditText 提示会永久显示。当 EditText 字段处于焦点或插入文本时,如何摆脱提示?
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/DrawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.getbase.floatingactionbutton.sample.EditProfileActivity"
tools:ignore="MergeRootFrame">
<include layout="@layout/fragment_edit_profile"/>
</android.support.design.widget.CoordinatorLayout>
在fragment_edit_profile.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
android:orientation="vertical"
tools:context="com.getbase.floatingactionbutton.sample.EditProfileActivity$PlaceholderFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:theme="@style/TextLabel">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="First Name"
android:inputType="textCapWords"
android:nextFocusDown="@+id/register_input_lastname"
/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:theme="@style/TextLabel">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/register_input_lastname"
android:hint="Last Name"
android:inputType="textCapWords"/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:theme="@style/TextLabel">
<android.support.v7.widget.AppCompatEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Email"
android:inputType="textEmailAddress" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:theme="@style/TextLabel">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Password"
android:inputType="textPassword" />
</android.support.design.widget.TextInputLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_weight="2"
android:theme="@style/TextLabel">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Country Code"
android:inputType="number"
android:nextFocusDown="@+id/mobile_number"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:theme="@style/TextLabel">
<EditText
android:id="@+id/mobile_number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Mobile"
android:inputType="phone"/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
</LinearLayout>
editText 提示不断显示并与 textInput 重叠。
[编辑]
这是 TextLabel 样式:
<style name="TextLabel" parent="@android:style/TextAppearance">
<item name="android:textColorHint">@color/half_black</item>
<item name="android:textSize">14dp</item>
<item name="colorAccent">@color/ColorPrimary</item>
<item name="colorControlActivated">@color/ColorPrimary</item>
</style>