我的 android 应用程序有问题:当我像这样开始一个新的 Intend 时:
Intent i = new Intent(MyFirstActivity.this, MySecondActivity.class);
startActivity(i);
当我看到 android 时会打开键盘,但MySecondActivity
我不知道为什么。
如何禁用此功能?
编辑:这是我的布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".MySecondActivity" >
<Button
android:id="@+id/foo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/edit" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<EditText
android:id="@+id/editTextBemerkung"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:enabled="false"
android:hint="@string/bemerkung" />
<AutoCompleteTextView
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:enabled="false"
android:hint="@string/foo" />
<Button
android:id="@+id/foo2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/foo"
android:visibility="gone" />
<ImageView
android:id="@+id/imageViewFoto2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:contentDescription="@string/foto"
android:src="@drawable/ic_launcher"
android:visibility="gone" />
<TextView
android:id="@+id/textViewAnzahl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/anzahl" />
<TextView
android:id="@+id/foo3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/foo" />
<TextView
android:id="@+id/foo4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/foo" />
<AutoCompleteTextView
android:id="@+id/foo6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:enabled="false"
android:hint="@string/foo" />
<AutoCompleteTextView
android:id="@+id/foo7"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:enabled="false"
android:hint="@string/foo" />
<TextView
android:id="@+id/foo8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/foo" />
<CheckBox
android:id="@+id/foo9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="false"
android:text="@string/foo" />
</LinearLayout>
</ScrollView>
</LinearLayout>