码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-06-21 01:57:19      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

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" >

 

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

标签:

原文地址:http://www.cnblogs.com/ajqfju/p/4591415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!