经过一些非常彻底的谷歌搜索后,我仍然无法弄清楚在文本和EditText View中显示的小图形是什么。我还想使用XML或以编程方式删除它。小图形是此图像中光标下的内容:http://1.bp.blogspot.com/-UAuOq0h4Vok/T8reinvaWPI/AAAAAAAABPc/N4yibXd3kZg/s1600/android%2Bedittext%2Btext%2Bchange%2Blistener%2Bexample.jpg。很抱歉,如果这是一个愚蠢的问题,但没有这个小图形功能的名称,我似乎无法找到任何相关的东西。
答案 0 :(得分:1)
试试这个..
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/hello"
android:background="#00000000"
/>
如果你想要透明度,只需在实际的哈希码之前放80.
#80000000
这会将您想要的任何颜色更改为透明颜色.. :))
答案 1 :(得分:1)
它是与edittext关联的背景drawable。您可以通过手动将背景设置为某些内容来更改它,例如
<EditText
android:background="@android:color/transparent"
...
/>
答案 2 :(得分:0)
你可能在你的布局中
android:minLines="2"
尝试删除它