Я застрял в один день, я пробовал несколько способов, но экран не менялся автоматически. Я использую тему parent = "@ style / Theme.AppCompat.Light.NoActionBar", но не сработал.Я попытался выполнить следующий процесс в файле манифеста. Я добавил следующее
android:windowSoftInputMode="adjustResize"
Я также добавил FrameLayout и ScrollView в качестве корневого макета и дочернего макета, но не сработал.
Мойкод в XML-файле:
android:id="@+id/root_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:fitsSystemWindows="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/forgot_screen_send_button"
android:layout_width="100dp"
android:layout_height="45dp"
android:layout_marginLeft="30sp"
android:layout_marginRight="30dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="20dp"
android:layout_gravity="center_horizontal"
android:background="@drawable/blue_color_bg_rec"
android:text="Send"
android:layout_alignParentBottom="true"
android:textColor="@color/white"
android:textAllCaps="false"
android:textSize="18sp"/>
</LinearLayout>
</LinearLayout>