-1

こんにちは、activity.xmlファイルに次のレイアウトがあります

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_change_password"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
android:layout_marginTop="0dp"
tools:context="com.kdpl.motodriver.ChangePassword">
<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar1"
    android:layout_width="fill_parent"
    android:layout_height="58dp"
    android:background="?attr/colorPrimary"
    android:minHeight="?attr/actionBarSize"
    android:titleTextColor="#ffffff">
    <Button
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:background="@drawable/back_arrow" android:onClick="onBackPressed" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/change_password_header"
        android:layout_gravity="center"
        android:id="@+id/toolbar_title"
        style="@style/TitleStyle"/>
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TextInputLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="30dp"
    android:layout_below="@+id/toolbar1"
    android:id="@+id/txt1">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:id="@+id/txtOldPIN"
        android:hint="@string/txt_old_pin"
        android:maxLength="4"
        android:paddingLeft="10dp"
        android:textColor="#ffffff"
        android:inputType="numberPassword"
        android:textColorHint="@color/lightGray"
        android:gravity="center_vertical"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:layout_below="@+id/txt1"
    android:id="@+id/txt2">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:paddingLeft="10dp"
        android:textColor="#ffffff"
        android:id="@+id/txtNewPin"
        android:inputType="numberPassword"
        android:maxLength="4"
        android:hint="@string/txt_new_pin"
        android:textColorHint="@color/lightGray"
        android:gravity="center_vertical"/>
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:layout_below="@+id/txt2"
    android:id="@+id/txt3">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:paddingLeft="10dp"
        android:id="@+id/txtConfirmPin"
        android:inputType="numberPassword"
        android:maxLength="4"
        android:textColor="#ffffff"
        android:layout_below="@+id/txt2"
        android:hint="@string/txt_confirm_new_pin"
        android:textColorHint="@color/lightGray"
        android:gravity="center_vertical"/>
</android.support.design.widget.TextInputLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_alignParentBottom="true">
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnChangePIN"
        android:layout_marginRight="16dp"
        android:layout_marginLeft="16dp"
        android:layout_centerHorizontal="true"
        android:background="@drawable/my_custom_btn_1"
        android:layout_below="@id/txt3"
        style="@style/buttonStyle"
        android:text="@string/txt_change_pin"
        android:enabled="false"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnCancelPIN"
        android:layout_marginTop="20dp"
        android:layout_marginRight="16dp"
        android:layout_marginLeft="16dp"
        android:layout_centerHorizontal="true"
        android:background="@drawable/my_custom_btn_1"
        android:layout_below="@id/btnChangePIN"
        style="@style/buttonStyle"
        android:text="@string/btn_cancel_text" />
</LinearLayout>

次の行を追加しましたManifest.xml

  <activity android:name=".ChangePassword"
        android:configChanges="orientation|keyboardHidden"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize"
        />

しかし、Buttons align parent bottomキーボードを開くと非表示になります。レイアウト自体のサイズは変更されません。

私は何が欠けていますか?

更新されたビュー

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_change_password"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
android:layout_marginTop="0dp"
tools:context="com.kdpl.motodriver.ChangePassword">
<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar1"
    android:layout_width="fill_parent"
    android:layout_height="58dp"
    android:background="?attr/colorPrimary"
    android:minHeight="?attr/actionBarSize"
    android:titleTextColor="#ffffff">
    <Button
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:background="@drawable/back_arrow" android:onClick="onBackPressed" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/change_password_header"
        android:layout_gravity="center"
        android:id="@+id/toolbar_title"
        style="@style/TitleStyle"/>
</android.support.v7.widget.Toolbar>
<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/toolbar1">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:layout_below="@+id/toolbar1"
            android:id="@+id/txt1">
            <EditText
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_marginLeft="16dp"
                android:layout_marginRight="16dp"
                android:id="@+id/txtOldPIN"
                android:hint="@string/txt_old_pin"
                android:maxLength="4"
                android:paddingLeft="10dp"
                android:textColor="#ffffff"
                android:inputType="numberPassword"
                android:textColorHint="@color/lightGray"
                android:gravity="center_vertical"/>
        </android.support.design.widget.TextInputLayout>
        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:layout_below="@+id/txt1"
            android:id="@+id/txt2">
            <EditText
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_marginLeft="16dp"
                android:layout_marginRight="16dp"
                android:paddingLeft="10dp"
                android:textColor="#ffffff"
                android:id="@+id/txtNewPin"
                android:inputType="numberPassword"
                android:maxLength="4"
                android:hint="@string/txt_new_pin"
                android:textColorHint="@color/lightGray"
                android:gravity="center_vertical"/>
        </android.support.design.widget.TextInputLayout>
        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:layout_below="@+id/txt2"
            android:id="@+id/txt3">
            <EditText
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_marginLeft="16dp"
                android:layout_marginRight="16dp"
                android:paddingLeft="10dp"
                android:id="@+id/txtConfirmPin"
                android:inputType="numberPassword"
                android:maxLength="4"
                android:textColor="#ffffff"
                android:layout_below="@+id/txt2"
                android:hint="@string/txt_confirm_new_pin"
                android:textColorHint="@color/lightGray"
                android:gravity="center_vertical"/>
        </android.support.design.widget.TextInputLayout>
    </LinearLayout>
</ScrollView>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingBottom="10dp"
    android:layout_alignParentBottom="true">
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnChangePIN"
        android:layout_marginRight="16dp"
        android:layout_marginLeft="16dp"
        android:layout_centerHorizontal="true"
        android:background="@drawable/my_custom_btn_1"
        android:layout_below="@id/txt3"
        style="@style/buttonStyle"
        android:text="@string/txt_change_pin"
        android:enabled="false"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnCancelPIN"
        android:layout_marginTop="20dp"
        android:layout_marginRight="16dp"
        android:layout_marginLeft="16dp"
        android:layout_centerHorizontal="true"
        android:background="@drawable/my_custom_btn_1"
        android:layout_below="@id/btnChangePIN"
        style="@style/buttonStyle"
        android:text="@string/btn_cancel_text" />
</LinearLayout>

scrollviewビューを更新してと の間に追加しtoolbarましたbuttons。提案されているように、アクティビティにも追加getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);しました。機能しますが、完全ではありません。Buttonsでビューを重ねますscroll view。添付画像ですマイアプリの画像

4

5 に答える 5