我的两处布局在我回头换面的一块片块内,一是看不见的,二是签证。 当含有EditText的布局变得明显时,软键板自动消失。 我在宣言中使用了以下文字,但却没有帮助。
android:windowSoftInputMode="stateUnchanged"
我从未明确要求把重点放在EditText上,甚至试图要求把注意力集中在别的东西上。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:id="@+id/container">
<LinearLayout android:id="@+id/dial_pad_ll"
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:layout_centerInParent="true"
android:background="#1E1E1E" android:layout_marginLeft="20dp" android:layout_marginRight="20dp">
<EditText android:layout_height="wrap_content" android:id="@+id/search_et"
android:layout_width="match_parent" android:layout_alignParentTop="true"
android:layout_marginTop="20dp" android:layout_marginBottom="10dp" >
</EditText>
<!-- Other widgets here -->
</LinearLayout>
<!-- Other Layout Here -->
</RelativeLayout>
任何人都知道如何防止这种情况? 感谢。
Edit:我也应当提到,这种情况第一次发生。 我用斜体字宣布第1版,使其看不见,使之再次可见一斑,然后是主机。