Как на самом деле работает атрибут "AdjustResize"
В эти дни я узнал, когда появилась популярность SoftKeyBoard, как изменился макет активности. Затем я написал образец и обнаружил что-то странное.
Вот мой макет:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.margi.inputbar.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="1" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="2" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="3" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="4" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="5" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="6" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="7" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="8" />
</LinearLayout>
<include layout="@layout/layout_input" />
Это манифест:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
И я использую инструмент Android Studio DDMS, чтобы проверить состояние макета.
Когда я скрываю SoftKeyboard, макет выглядит так:
И макет XML это:
Линейный макет имеет восемь дочерних TextViews.
А затем выскакивает Softkeyboard:
Формат XML:
LinearLayout имеет только 4 дочерних TextViews
Итак, вот два вопроса, на которые я хочу найти ответы:
(1) Я хочу знать, что на самом деле произошло, когда отображается SoftKeyboard, где исчезло TextView?
(2) Есть ли какой-либо документ, файл или блог, чтобы объяснить это? Я прочитал документ Google "Обучение Google", но до сих пор не совсем уверен в этом.