• 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>
  • 相关阅读:
    多姿多彩的线程
    字典操作
    字符串语法
    购物车
    列表常用语法
    整数划分问题
    计算N的阶层
    判断是否是素数
    快速排序
    冒泡排序
  • 原文地址:https://www.cnblogs.com/lytwajue/p/6971716.html
Copyright © 2020-2023  润新知