我有这个布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" >
</EditText>
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
</ScrollView>
</LinearLayout>
..当我执行我的应用程序时,会显示键盘。
http://img62.imageshack.us/img62/2879/screenshot2013041012264.png
如果我不使用滚动视图,除非我单击一个edittext,否则不会发生这种情况。
我想在执行我的应用程序时不显示键盘(有滚动视图),除非我点击edittext。
任何想法?
谢谢!
答案 0 :(得分:0)
您可以在清单文件的活动代码中放置 android:windowSoftInputMode =“stateHidden”