标签:
一、默认不获取焦点:
在布局文件的父控件中,设置如下属性:
android:focusable="true"
android:focusableInTouchMode="true"
eg:
<LinearLayout style="@style/FillWrapWidgetStyle" android:orientation="vertical" android:background="@color/black" android:gravity="center_horizontal" android:focusable="true" android:focusableInTouchMode="true" > <ImageView android:id="@+id/logo" style="@style/WrapContentWidgetStyle" android:background="@drawable/dream_dictionary_logo" /> </LinearLayout >
二、光标:
(1)设置光标的位置:
editText.setSelection(2);
输入的参数是个整数
范围为:0~string.lenght();
eg:定位到字符串str的末尾:
editText.setSelection(str.length());
(2)不显示光标:
editText.setCursorVisible(false);
标签:
原文地址:http://www.cnblogs.com/butterfly-clover/p/4313612.html