当我开始登录活动时。它有两个字段的电子邮件和密码。电子邮件应该得到焦点,但在活动开始时不会自动打开键盘。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/splash_background_gradient" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginBottom="10dip"
android:layout_marginTop="10dip"
android:orientation="vertical" >
<ImageView
android:id="@+id/SplashLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="40dip"
android:src="@drawable/splash_logo" />
<EditText
android:id="@+id/EmailAddress"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:hint="Email Address"
android:maxLines="1" android:nextFocusRight="@+id/Password">
</EditText>
<EditText
android:id="@+id/Password"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:layout_marginTop="5dip"
android:hint="Password"
android:inputType="textPassword" />
<Button
android:id="@+id/Login"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:layout_marginTop="10dip"
android:background="@drawable/login_button_selector"
android:text="@string/login" />
<TextView
android:id="@+id/ForgotPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="28dp"
android:layout_marginRight="28dp"
android:layout_marginTop="10dip"
android:text="@string/forgot_password"
android:textColor="#000000"
android:textSize="7pt"/>
</LinearLayout>
</ScrollView>
答案 0 :(得分:6)
您应该添加属性
android:windowSoftInputMode="stateAlwaysHidden"
你在AndroidManifest.xml中的活动
答案 1 :(得分:0)
此技术会在用户触摸EditText
之前抑制软键盘InputMethodManager inputMethodManager = (InputMethodManager) context.getSystemService(YourClass.INPUT_METHOD_SERVICE);
if (inputMethodManager != null) { // protection
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
}