Android界面默认让文本框失去焦点

android:focusable="true"
android:focusableInTouchMode="true"

在最外面的LinearLayout加上两个属性

 1 <LinearLayout 
 2     xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="fill_parent"
 4     android:layout_height="wrap_content"
 5     android:background="#D3D3D3"
 6     android:orientation="vertical" 
 7     android:paddingTop="5dip"
 8     android:layout_gravity="center"
 9     android:focusable="true"  
10     android:focusableInTouchMode="true" >

 

posted @ 2015-06-21 00:54  柠檬真的很酸  阅读(2059)  评论(0)    收藏  举报