Строка заголовка скрывается при всплывающей Softkeyboard - PullRequest
2 голосов
/ 22 октября 2011

У меня есть пользовательская строка заголовка, поэтому я хочу, чтобы при вводе пользователем имени пользователя и пароля в разделе «Действия при входе» строка заголовка не скрывалась.Но, к сожалению, это скрывается.Я попытался использовать android:windowSoftInputMode= "adjustPan, но заголовок все равно скрывается.

Итак, как я могу показать и строку заголовка, и Softkeyboard?

Вот мой снимок экрана,

Это мой логин

enter image description here

Это когда я нажимаю на EditText, и строка заголовка становится Hide.

enter image description here

Это мой xml для входа в систему.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white">

    <TableLayout android:id="@+id/tbl_layout" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:layout_marginRight="5dip"
        android:layout_marginLeft="5dip" android:layout_centerInParent="true">
        <TableRow android:weightSum="10">
            <TextView android:layout_weight="3" android:layout_width="0dp"
                android:layout_height="wrap_content" android:text="Username:"
                android:textColor="@color/dark_purple" />
            <EditText android:id="@+id/et_username" 
                android:layout_weight="7" android:layout_width="0dp"
                android:layout_height="wrap_content" android:hint="Username"
                android:singleLine="true"
                android:background="@drawable/edit_text_select"
                android:padding="8dip"
                 />
        </TableRow>

        <TableRow android:weightSum="10" android:layout_marginTop="10dip">
            <TextView android:layout_weight="3" android:layout_width="0dp"
                android:layout_height="wrap_content" android:text="Password:"
                android:textColor="@color/dark_purple" />
            <EditText android:id="@+id/et_password" 
                android:layout_weight="7" android:layout_width="0dp"
                android:layout_height="wrap_content" android:hint="Password"
                android:singleLine="true" 
                android:password="true"
                android:padding="8dip"
                android:background="@drawable/edit_text_select"/>
        </TableRow>
    </TableLayout>

    <LinearLayout android:layout_below="@id/tbl_layout" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:gravity="right"
        android:layout_marginTop="10dip">
        <Button android:id="@+id/btn_login" 
            android:layout_height="wrap_content"
            android:layout_width="wrap_content" android:padding="15dp"
            android:text="Login" android:layout_marginRight="15dip"
            android:onClick="myOnClick"
            android:textColor="@android:color/white"
            android:background="@color/dark_purple"/>
    </LinearLayout>

</RelativeLayout>

1 Ответ

2 голосов
/ 22 октября 2011

Я уверен, что вы взяли все виды только в одном RelativeLayout.

А также, если вы взяли ScrollView, тогда поместите текстовое представление Titlebar вне ScrollView.Я столкнулся с той же проблемой и решил эту хитрость.

И если вы разместите здесь XML-макет, было бы здорово исправить точную проблему.

...