Заставить фоновое изображение не «сквошиться» при нажатии на один из вводимых текстов, чтобы вызвать клавиатуру - PullRequest
0 голосов
/ 16 января 2019

Так что я новичок в кодировании Android и обычно я могу найти свои решения в Google, но в этот раз мне не повезло. Я сделал приложение с двумя действиями (экран входа в систему, который также имеет кнопку регистрации, которая ведет к экрану регистрации), и на начальном экране входа в систему, щелкнув один из текстовых вводов, можно сжать фоновое изображение, чтобы оно по существу вписалось в меньшее пространство, создаваемое, когда клавиатура занимает часть экрана. Это довольно раздражает.

Извините за вставку такого огромного блока кода, но как новичок, я не совсем уверен, какая часть этого кода актуальна, поэтому я включил весь XML. Спасибо!

О, и еще раз - я не могу не подчеркнуть, что я полный нуб, - поэтому любые ответы, пожалуйста, укажите совершенно ясно, какой именно код я должен изменить / в том числе и в каком файле, и где около этого файла

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:gravity="center_horizontal"
    android:orientation="vertical"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:background="@drawable/qlogoonwallpaper"
    tools:context=".MainActivity">

    <!-- Login progress -->
    <ProgressBar
        android:id="@+id/login_progress"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:visibility="gone" />

    <ScrollView
        android:id="@+id/login_form"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="32dp"
        android:layout_marginBottom="48dp">

        <LinearLayout
            android:id="@+id/email_login_form"
            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">

                <AutoCompleteTextView
                    android:id="@+id/email"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:dropDownWidth="match_parent"
                    android:hint="@string/prompt_email"
                    android:inputType="textEmailAddress"
                    android:maxLines="1"
                    android:singleLine="true" />

            </android.support.design.widget.TextInputLayout>

            <android.support.design.widget.TextInputLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <EditText
                    android:id="@+id/password"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="@string/prompt_password"
                    android:imeActionId="6"
                    android:imeActionLabel="@string/action_sign_in_short"
                    android:imeOptions="actionUnspecified"
                    android:inputType="textPassword"
                    android:maxLines="1"
                    android:singleLine="true" />

            </android.support.design.widget.TextInputLayout>

            <Button
                android:id="@+id/email_sign_in_button"
                style="?android:textAppearanceSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginTop="16dp"
                android:background="@color/colorPrimaryDark"
                android:text="@string/action_sign_in"
                android:textAllCaps="false"
                android:textColor="@android:color/background_light"
                android:textStyle="bold" />
        </LinearLayout>
    </ScrollView>

    <EditText
        android:id="@+id/editText3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/editText"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="-208dp"
        android:ems="10"
        android:hint="@string/prompt_email"
        android:inputType="textEmailAddress" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="225dp"
        android:background="@android:color/transparent"
        android:text="@string/register_intro"
        android:textAllCaps="false"
        android:textColor="@android:color/background_light"
        android:textSize="18sp"
        android:textStyle="bold|italic" />

</RelativeLayout>

1 Ответ

0 голосов
/ 16 января 2019

Внутри файла манифеста Android попробуйте добавить следующий атрибут для своей основной деятельности:

<activity
            android:name=".MainActivity"
            android:windowSoftInputMode="adjustPan">
...
</activity>

, который делает панорамы при появлении программной клавиатуры, но размер окна действия не изменяется. Посмотрите, имеет ли это какое-то значение. Если изменение размера будет работать лучше, вместо атрибута "adjustPan" вы можете добавить "adjustResize". Надеюсь, что один из двух сделает все за вас.

...