Closed. This question needs details or clarity。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗?添加详细信息并通过editing this post阐明问题。
                        
                        4年前关闭。
                                                                                            
                
        
我按照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" />

最佳答案

如下更改您的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" />

关于android - 输入文字时工具栏的尺寸很大吗? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31271240/

10-10 13:53