请帮助我创建一个类似于此主页设计的工具栏:
.
工具栏的顶部有3个按钮(3个图像按钮),
下面的2个按钮,搜索框(图像按钮)和镜头(图像按钮)
我在顶部放置了3个按钮,但无法在正确的位置添加搜索框和镜头按钮
我正在使用导航抽屉活动.活动名称为“家”
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.cortana.shopv3.HomeActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
android:weightSum="1">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:srcCompat="@android:drawable/ic_menu_sort_by_size"
android:layout_marginLeft="100sp"
android:background="@null"
android:adjustViewBounds="true"
android:cropToPadding="true" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:srcCompat="@android:drawable/btn_plus"
android:layout_marginLeft="15sp"
android:background="@null"
android:adjustViewBounds="true"
android:cropToPadding="true" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@android:drawable/ic_menu_save"
android:id="@+id/savebtn"
android:background="@drawable/refreshgreen"
android:adjustViewBounds="true"
android:layout_marginLeft="15sp"
android:layout_alignParentTop="true"
android:layout_marginBottom="15sp"
android:cropToPadding="true" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
解决方法:
试试这个让你的工具栏像这样
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="100sp"
android:adjustViewBounds="true"
android:background="@null"
android:cropToPadding="true"
app:srcCompat="@android:drawable/ic_menu_sort_by_size" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="15sp"
android:adjustViewBounds="true"
android:background="@null"
android:cropToPadding="true"
app:srcCompat="@android:drawable/btn_plus" />
<ImageButton
android:id="@+id/savebtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginBottom="15sp"
android:layout_marginLeft="15sp"
android:adjustViewBounds="true"
android:background="@drawable/ic_down"
android:cropToPadding="true"
app:srcCompat="@android:drawable/ic_menu_save" />
</LinearLayout>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。