Android EditText技巧总结
一、默认不获取焦点:
在布局文件的父控件中,设置如下属性:
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);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。