首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android - edittext 默许隐藏软键盘

2013-03-22 
android - edittext 默认隐藏软键盘edittext 默认隐藏软键盘 方法一:? 在 edittext 最外层的布局加入下面

android - edittext 默认隐藏软键盘

edittext 默认隐藏软键盘

方法一:

? 在 edittext 最外层的布局加入下面两句:

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

? 代码如下:

?<LinearLayout
??????? android:layout_width="wrap_content"
??????? android:layout_height="wrap_content"
??????? android:focusable="true"
??????? android:focusableInTouchMode="true"
??????? android:orientation="horizontal" >

?<EditText
??????????? android:id="@id/edit_news_gathering_title"
??????????? android:layout_width="0dp"
??????????? android:layout_height="wrap_content"
??????????? android:layout_weight="4"
??????????? android:hint="@string/newsGatheringTitle"
??????????? android:inputType="text" />
??? </LinearLayout>

?

属于别人使用的方法,几天后整理,搜不到原引用了,抱歉。??

热点排行