当EditText成为第一响应者并且键盘正在显示时,我试图调整我的活动大小。
目前我在android:windowSoftInputMode="adjustResize"
使用了AndroidManifest.xml
。它工作得很好但是当键盘显示时我可以在后台看到之前的活动。这是正常的吗?
这两项活动都有白色背景,所以我想知道我做错了什么?
我的第二个活动xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">
<TextView
android:id="@+id/topView"
android:background="@color/HWMMainColor"
android:textColor="@color/white"
android:layout_width="match_parent"
android:layout_height="60dp"
android:padding="6dip"/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLinearLayout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1.0" />
</LinearLayout>
由于