我创建了两个顶部和一个底部的工具栏。
结果是这样的:
我的问题是,如何让我的底部工具栏的项目居中,其宽度垂直跨越以适合工具栏?
以下是我所做的:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="app.shinobi.org.ssmis.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/container_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/main_toolbar" />
</LinearLayout>
<app.shinobi.org.util.tab.SlidingTabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"
android:background="@color/primaryColor"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1">
</android.support.v4.view.ViewPager>
<include
android:id="@+id/stats_toolbar"
layout="@layout/stats_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
/>
</LinearLayout>
这是我的两个菜单:
顶部工具栏的:
<menu 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"
tools:context="app.shinobi.org.ssmis.MainActivity">
<item android:id="@+id/search" android:title="@string/search"
android:icon="@drawable/ic_search" android:orderInCategory="1" app:showAsAction="always"/>
<item android:id="@+id/refresh" android:title="@string/action_refressh"
android:icon="@drawable/ic_refresh" android:orderInCategory="2" app:showAsAction="always" />
底部工具栏的
:
<menu 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"
tools:context="app.shinobi.org.ssmis.MainActivity">
<item android:id="@+id/monthly" android:title="@string/action_monthly"
android:icon="@drawable/ic_refresh" android:orderInCategory="3" app:showAsAction="always" />
<item android:id="@+id/yearly" android:title="@string/action_yearly"
android:icon="@drawable/ic_refresh" android:orderInCategory="4" app:showAsAction="always" />
<item android:id="@+id/drugs" android:title="@string/action_drugs"
android:icon="@drawable/ic_refresh" android:orderInCategory="5" app:showAsAction="always" />
谢谢!
答案 0 :(得分:2)
创建菜单始终将按钮放在工具栏的末尾。
如果您想将这些按钮居中,则必须使用toolbar.addView(view)
,您的视图可以从xml文件中膨胀,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3"
>
<ImageButton
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
<ImageButton
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
<ImageButton
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
</LinearLayout>
然后你必须:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.setContentInsetsRelative(0, 0);
toolbar.addView(
LayoutInflater.from(this).inflate(R.layout.toolbar, null, false),
new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)
);
答案 1 :(得分:1)
我可以建议一个不是很好的解决方案,但它有效。如果我正确理解包含布局,您有一个工具栏视图。它是一个容器,所以你可以像相对或线性布局一样使用它。并在其中放置按钮或其他视图。并在中心写出重力等属性。就是这样。
另一种方法 - 用菜单布局中的项目做smth可能是。但我不知道如何(
PS:一个简短的例子
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="@color/primary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="previousActivity"
android:src="@drawable/ic_navigate_before_white_24dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Contact us"
android:textColor="@color/white"
android:textSize="20sp"
android:layout_gravity="center"
android:id="@+id/toolbar_title" />
</android.support.v7.widget.Toolbar>
答案 2 :(得分:1)
实际上,您可以使用ActionMenuView
替换底部的工具栏
或者您可以尝试使用此SplitToolbar实现