如何将小部件添加到工具栏并增加其高度

时间:2015-01-22 08:33:26

标签: android material-design android-toolbar

我希望在我的活动工具栏中添加几个EditTexts,并根据Material设计规格增加其高度,如下图所示:

enter image description here

我如何实现这一点,即如何将常规小部件添加到工具栏并增加其高度?

谢谢!

1 个答案:

答案 0 :(得分:2)

你不会相信,但它如此简单:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="250dp"            // Height of toolbar 
android:background="@color/anycolor">

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint=""/>

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint=""/>   

//Add as many widgets as you want

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