码迷,mamicode.com
首页 > 移动开发 > 详细

Android clickable 和 focusable

时间:2014-09-01 19:06:03      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   使用   ar   div   

setClickable(),好像是控制按钮是否可以被点击和点击之后触发监听器事件。
setFocusable();控制键盘是否可以获得这个按钮的焦点。(我按实体键盘上方向键,button被选中)

 今天想使用设置background的方法更改linearlayout的点击时的背景,发现不好用,原来没设置clickable,待总结。

<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"  android:drawable="@color/gray" />
    <item android:state_pressed="false"  android:drawable="@color/clear" />


</selector> 

 

待总结,做个记号

Android clickable 和 focusable

标签:android   style   blog   http   color   io   使用   ar   div   

原文地址:http://www.cnblogs.com/breezemist/p/3949581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!