按下时在文本周围添加发光

时间:2011-11-11 04:17:47

标签: android

有没有办法在按下时为文本添加发光效果。我们可以通过使用文本选择器来做到这一点吗?

1 个答案:

答案 0 :(得分:0)

在drawable文件夹中创建xml文件名editbox_bg.xml。 在editbox_bg.xml文件中编写以下代码:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:drawable="@drawable/editbox_background_focus_yellow" />
    <item android:drawable="@drawable/editbox_background_normal" />
</selector>

editbox_background_focus_yellow是一张图片。像这样:---&gt; enter image description here

现在在xml文件中设置EditText的背景@ drawable / editbox_bg