4
<EditText
    android:id="@+id/myEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10"
    android:enabled="false" >
</EditText>

我有上面禁用的编辑文本。我只从其他地方获取值并将其插入其中,用户无法在其中输入。但是,禁用形式时编辑文本的颜色太灰,有时用户看不到。我更喜欢它看起来是黑色的。是否有任何我不知道的基本功能,而不是在禁用模式下可以更改编辑文本的颜色?任何其他解决方法也可以正常工作。

4

3 回答 3

4

你的布局:

<EditText
    android:id="@+id/myEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10"
    android:enabled="false"
    android:background = "@drawable/edittextdrawable.xml">
</EditText>

编辑textdrawable.xml:

 <selector xmlns:android="http://schemas.android.com/apk/res/android">
            <item android:state_enabled="false"
                android:drawable="@drawable/PUT DRAWABLE HERE" />
            <item android:state_enabled="true"
                android:drawable="@drawable/PUT DRAWABLE HERE" />
 </selector>
于 2013-08-27T13:35:44.737 回答
0

Try to use statelist xml drawable, and set this to your EditText's background:

   <?xml version="1.0" encoding="utf-8"?>   <selector xmlns:android="http://schemas.android.com/apk/res/android">      <item android:state_pressed="true"
                  android:drawable="@drawable/bankszamlak_pressed" />  <!-- pressed -->     <item android:state_focused="true"
                  android:drawable="@drawable/bankszamlak" />  <!-- focused -->     <item android:drawable="@drawable/bankszamlak" />  <!-- default -->  </selector>

for further information check this link

于 2013-08-27T13:34:22.177 回答
-1

如果您不希望用户输入,您应该使用 TextView。然后你不需要使用 disable 来阻止用户输入它。

于 2013-08-27T13:28:25.790 回答