我为@null
设置EditText
之后,提示禁用,我无法启用
xml layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#e67e22"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="50dp"
>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".42"/>
<EditText
android:id="@+id/username"
android:layout_width="0dp"
android:layout_height="43dp"
android:layout_weight="6"
android:textSize="18sp"
android:hint="@string/username_hint"
android:gravity="center"
android:singleLine="true"
android:background="@null"
/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".42"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="50dp"
>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".42"/>
<EditText
android:id="@+id/password"
android:layout_width="0dp"
android:layout_height="43dp"
android:layout_weight="6"
android:textSize="18sp"
android:hint="@string/password_hint"
android:password="true"
android:gravity="center"
android:singleLine="true"
android:background="@null"
/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".42"/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
我无法重现上述xml的问题。它运作良好。但是尝试设置提示颜色,可能就是问题所在。 android:textColorHint="#666"
同时检查hint
字符串资源是否不是Empty String