Android为@null背景启用提示

时间:2014-10-12 07:59:14

标签: android android-layout

我为@null设置EditText之后,提示禁用,我无法启用

enter image description here

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>

1 个答案:

答案 0 :(得分:0)

我无法重现上述xml的问题。它运作良好。但是尝试设置提示颜色,可能就是问题所在。 android:textColorHint="#666"同时检查hint字符串资源是否不是Empty String