编辑文本时,Android工具栏会隐藏

时间:2015-06-06 05:05:31

标签: android layout android-5.0-lollipop toolbar statusbar

当我开始编辑文本时,我的工具栏正在上升并离开屏幕。

编辑前:

enter image description here

编辑:

enter image description here

我想要类似whatsapp的东西,在whatsapp中编辑文本时工具栏不会这样做(在同一个网址上有一个whatsapp屏幕的例子,但第三个是#3)。

我不知道该怎么做。我一直在搜索stackoverflow但我没有找到任何可以帮助我的东西。 我试图把android:fitsSystemWindows =“true”,但我没有解决任何问题:/

<?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="@drawable/wpp"
android:windowTranslucentStatus="false"
android:fitsSystemWindows="true"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
    android:id="@+id/login_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:layout_alignParentTop="true"
    android:background="@color/green"/>


<LinearLayout
    android:id="@+id/talk_input"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_alignParentBottom="true"
    android:padding="8dp">

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:minHeight="48dp"
        android:orientation="horizontal"
        android:background="@drawable/message"
        android:layout_marginRight="10dip">
        <ImageButton
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:id="@+id/emoction_button"
            android:src="@drawable/emoction"
            android:layout_gravity="bottom"
            android:background="#0fff"/>
        <EditText
            android:id="@+id/etMessageBox"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_gravity="center"
            android:autoLink="all"
            android:background="#00000000"
            android:gravity="top|left"
            android:inputType="textMultiLine|textCapSentences"
            android:lines="5"
            android:maxLines="10"
            android:minLines="1"
            android:padding="10dp"
            android:scrollbars="none"/>
    </LinearLayout>

    <ImageButton
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_gravity="bottom"
        android:id="@+id/send_button"
        android:src="@drawable/send_2"
        android:background="@drawable/send_button"/>
</LinearLayout>

<android.support.v7.widget.RecyclerView
    android:id="@+id/messages"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@id/talk_input"
    android:layout_below="@id/login_toolbar">

</android.support.v7.widget.RecyclerView>

0 个答案:

没有答案