当前位置: 首页 > 工具软件 > Focusable > 使用案例 >

Android中关于获取焦点的那些事:focusable属性的应用。

赫连冠玉
2023-12-01


前言

有时候我们做Android开发的时候需要控制控件是否可以获取焦点,这时候我们就可以用到其中的focusable属性。


例如:

1.可以获取焦点。

将focusable属性设置为true即可,代码如下(示例):

   <Button
       android:id="@+id/bnt1"
       android:layout_width="180dip"
       android:layout_height="36dp"
       android:clickable="false"
       android:focusable="true"
       android:text="F1" />

2.禁止获取焦点

将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属性的作用大概就是这样。

 类似资料: