有时候我们做Android开发的时候需要控制控件是否可以获取焦点,这时候我们就可以用到其中的focusable属性。
将focusable属性设置为true即可,代码如下(示例):
<Button
android:id="@+id/bnt1"
android:layout_width="180dip"
android:layout_height="36dp"
android:clickable="false"
android:focusable="true"
android:text="F1" />
将focusable属性设置为false即可,代码如下(示例):
<Button
android:id="@+id/bnt2"
android:layout_width="180dip"
android:layout_height="36dp"
android:clickable="false"
android:focusable="false"
android:text="F2" />
关于focusable属性的作用大概就是这样。