EditText在启动Activity时不自动获取焦点

来源:互联网 发布:老巴黎西洋家具淘宝网 编辑:程序博客网 时间:2024/04/30 01:56
在EditText的父级控件中加上这两个属性:
android:focusable="true"  

android:focusableInTouchMode="true"

如:

<LinearLayout 

 android:layout_width="match_parent"
        android:layout_height="60dp"
        android:orientation="horizontal"
        android:focusable="true"  
        android:focusableInTouchMode="true"
        >

。。。

0 0
原创粉丝点击