删除EditText的焦点边框

时间:2011-03-29 19:51:34

标签: android android-edittext

如何在对焦EditText视图时删除出现的边框?

我需要它,因为这个视图在屏幕上占用的空间很小,但没有边框就足够了。在模拟器上运行时,将显示橙色边框,在设备上显示蓝色边框。

5 个答案:

答案 0 :(得分:185)

您是否尝试将EditText的背景设置为透明色?

<EditText  
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:hint="@string/hello" 
android:background="#00000000"
/>

答案 1 :(得分:38)

<EditText
            android:id="@+id/edittext"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"  
            android:background="@android:drawable/editbox_background_normal"                 

 />

答案 2 :(得分:12)

有可能。但是我不推荐它,因为用户习惯于某些比喻,你不应该改变一般的UX。

您可以为视图应用不同的样式。在你的情况下,听起来你想要一个看起来像TextView元素的EditText View元素。在这种情况下,您必须根据View元素的状态为EditText指定其他背景。

在您想要的layout.xml中,为EditText分配背景:

<EditText  
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:hint="@string/hello" android:background="@drawable/custom"
/>

然后在drawable文件夹中创建custom.xml并添加以下内容:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_window_focused="false" android:state_enabled="true"
    android:drawable="@drawable/textfield_default" />
  <item android:state_window_focused="false" android:state_enabled="false"
    android:drawable="@drawable/textfield_disabled" />
  <item android:state_pressed="true" android:drawable="@drawable/textfield_default" />
  <item android:state_enabled="true" android:state_focused="true" android:drawable="@drawable/textfield_default" />
  <item android:state_enabled="true" android:drawable="@drawable/textfield_default" />
  <item android:state_focused="true" android:drawable="@drawable/textfield_disabled" />
  <item android:drawable="@drawable/textfield_disabled" />
</selector>

这些是EditText View元素的可能状态。通常,您可以使用@android:drawable/textfield_default直接访问Android平台drawable,但在这种情况下,textfield drawables是私有的,因此您必须将它们复制到您自己的drawable文件夹中。您可以在ANDROID_HOME\platforms\android-(API LEVEL)\data\res\drawable-(*dpi)\的SDK安装文件夹中找到原始资源。

完成后,最终会得到一个看起来像TextView但完全没有这些边框的EditText。您在模拟器中看到的那些橙色边框是默认的Android drawable。蓝色的是供应商特定的(可能是三星)。

希望这有助于并且不会混淆那么多。

答案 3 :(得分:5)

这是最快的解决方案:

<EditText
            android:id="@+id/edittext"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"  
            android:background="#00000000"                 

 />

答案 4 :(得分:0)

您可以将背景色保持透明,以消除焦点上的EditText边框。

方法1

<EditText 
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#00000000"
/>