0

如何创建一个工具栏/操作栏,将默认的actiondrawertoggle 按钮(带有汉堡箭头动画)与 edittext 和这样的简单按钮相结合?

在此处输入图像描述

4

1 回答 1

0

Toolbar是 a ViewGroup,因此,您可以将 aToolbar用作 a FrameLayout

下面是一个简单的例子,看一下:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar_appcompat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" >
    <LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    //customize your toolbar content layout here.
    </LinearLayout >
</android.support.v7.widget.Toolbar>

希望你会受到启发。

于 2015-07-02T09:05:34.620 回答