我试图将文本置于工具栏的中心位置,同时考虑到Activity上正在膨胀的菜单。我在SO上找到了很多解决方案,但没有找到任何涵盖菜单膨胀的情况。
如果我只是在ImageView
充气menu
而不给ImageView
充气,那么一切正常。
如果我对menu
和image
进行充气,则Toolbar
不会显示在ImageView
的中心,而是以自己的空间为中心(汉堡包和菜单)
结论:
我需要将Toolbar
放在menu
上,无论以后是否有什么膨胀。我现在正在膨胀的item
只有一个 <android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
app:elevation="0dp">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:contentInsetLeft="0dp"
app:contentInsetStartWithNavigation="0dp"
app:theme="@style/ToolbarTheme">
<ImageView
android:id="@+id/toolbar_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/app_logo" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
(一个开关,始终可见)
这是我目前的代码:
...
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main_toolbar_user_visibility, menu);
return true;
}
...
的活动:
cron="0 0/30 * * * ?"
即使在菜单膨胀后,如何使ImageView居中?
答案 0 :(得分:9)
如果我给imageView和菜单充气,那么图像就无法获得 显示在工具栏的中心,但以自己的空间为中心 (汉堡包和菜单之间)。
这种情况正在发生,因为您在ImageView
内添加了Toolbar
,而Toolbar
正在使用ActionBar
,因此它使用了一些left
空格选项back
的{{1}}或drawer
图标和right
空格。
menu
<强> SOLUTION:强>
1。添加Toolbar = "Back arrow" + "Middle area(Title/Image)" + "Option menu"
作为RelativeLayout
的直接子女。
2。将AppBarLayout
和Toolbar
放在ImageView
内。
3。将属性RelativeLayout
添加到android:layout_centerInParent="true"
,以imageView
center
显示。
以下是工作代码:
Toolbar
在您的活动中,添加以下行:
<?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"
android:id="@+id/mainCoordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
app:elevation="0dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:contentInsetLeft="0dp"
app:contentInsetStartWithNavigation="0dp"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
</android.support.v7.widget.Toolbar>
<ImageView
android:id="@+id/toolbar_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@mipmap/ic_launcher" />
</RelativeLayout>
</android.support.design.widget.AppBarLayout>
<!-- Your Content here -->
</android.support.design.widget.CoordinatorLayout>
<强>输出:强>
希望这会有所帮助〜
答案 1 :(得分:0)
您可以创建单独的布局,使您可以忽略工具栏本身并自由对齐,并将其包含在工具栏布局之后。通过getSupportActionBar().setDisplayShowTitleEnabled(false);
删除标题。(这与抽屉活动和片段无关,但您可以忽略)
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout 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"
tools:context=".MainActivity"
android:background="@color/splashback"
android:id="@+id/drawer_layout"
android:layoutDirection="rtl"
>
<!-- your main fragment content layout -->
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/content_main"/>
<!-- your action bar (customised) layout -->
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/drawer_toolbar"/>
<!-- GO TO CENTER MORON LOGO layout -->
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/toolbarlogo"/>
<!-- drawer -->
<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:menu="@menu/drawer_menu"
app:headerLayout="@layout/drawer_head"
android:fitsSystemWindows="true"
/>
</androidx.drawerlayout.widget.DrawerLayout>
drawer_toolbar.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimaryDark"
android:id="@+id/toolbarx"
android:layoutDirection="rtl"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
/>
</LinearLayout>
toolbarlogo.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:src="@drawable/logotoolbar"
android:layout_gravity="center"
/>
</LinearLayout>