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

Android之如何更改获取焦点的先后顺序

时间:2015-08-19 20:35:32      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:android

在组件中加入<requestFocus />可以首先获得焦点

以TextView为例:

 如下:
<TextView
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:background="#ffcc00"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:singleLine="true"
        android:text="++++++++++++必须超出容纳范围才行+++++++++++++" >


        <requestFocus />//请求焦点
    </TextView>

版权声明:本文为博主原创文章,未经博主允许不得转载。

Android之如何更改获取焦点的先后顺序

标签:android

原文地址:http://blog.csdn.net/wei_chong_chong/article/details/47784889

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