输入文字时工具栏的大小非常大?

时间:2015-07-07 14:20:38

标签: android

我按照tutorial制作素材滑动标签,一切正常。 问题出现在EditText得到关注并开始在EditText中输入文字时,ToolBar会突然占据整个屏幕。

代码 tool_bar.xml

<?xml version="1.0" encoding="utf-8"?>
    <android.support.v7.widget.Toolbar
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:background="@color/ColorPrimary"
    android:elevation="2dp"
    android:theme="@style/Base.ThemeOverlay.AppCompat.Dark"
    xmlns:android="http://schemas.android.com/apk/res/android" />

enter image description here

1 个答案:

答案 0 :(得分:1)

按如下所示更改 toolbar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    android:layout_height="?attr/actionBarSize"
    android:layout_width="match_parent"
    android:background="@color/ColorPrimary"
    android:elevation="2dp"
    android:theme="@style/Base.ThemeOverlay.AppCompat.Dark"
    xmlns:android="http://schemas.android.com/apk/res/android" />