尝试将徽标置于工具栏中。当我导航到下一个活动时," up advance"图标存在,它会将我的徽标略微向右推。如何在不删除可用性图标的情况下将我的徽标保留在工具栏的中心?
这是我的工具栏标签
<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="wrap_content"
android:background="@color/primaryColor"
android:paddingTop="@dimen/app_bar_top_padding"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
app:theme="@style/CustomToolBarTheme">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_android_logo"
android:layout_gravity="center"
android:paddingBottom="3dp"/>
</android.support.v7.widget.Toolbar>
答案 0 :(得分:11)
你可以这样做,因为它对我有用:
<android.support.v7.widget.Toolbar
android:id="@+id/mainToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="@dimen/abc_action_bar_default_height_material">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/headerLogo"
android:contentDescription="@string/app_name" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
答案 1 :(得分:5)
在javadoc中,它说:
一个或多个自定义视图。应用程序可能会添加任意子视图 工具栏的视图。他们将出现在这个位置 布局。如果子视图的Toolbar.LayoutParams表示重力 值为CENTER_HORIZONTAL,视图将尝试居中 所有其他元素都有后,工具栏中剩余的可用空间 已被测量。
这意味着除非您创建自定义toolbar
或删除icon
,否则您无法执行此操作。
答案 2 :(得分:3)
您可以通过编程方式执行此操作,这是我设法在工具栏中完全居中徽标的唯一方法。
添加到您的活动:
@Override
public void onWindowFocusChanged(boolean hasFocus){
// set toolbar logo to center programmatically
Toolbar toolbar = (Toolbar) findViewById(R.id.main_toolbar);
ImageView logo = (ImageView) findViewById(R.id.logo);
int offset = (toolbar.getWidth() / 2) - (logo.getWidth() / 2);
// set
logo.setX(offset);
}
和您的toolbar_main.xml:
<?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:id="@+id/main_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/bg_yellow"
android:elevation="4dp"
android:fontFamily="@string/font_family_thin"
app:contentInsetStartWithNavigation="0dp"
android:layout_gravity="center_horizontal">
<TextView
android:id="@+id/title_toolbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@string/font_family_light"
android:textColor="@color/text_dark_xxx"
android:textSize="@dimen/text_default"
android:layout_centerVertical="true"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/logo"
android:id="@+id/logo"
android:paddingTop="5dp" />
</android.support.v7.widget.Toolbar>
答案 3 :(得分:3)
我有点迟到回答这个问题,但有很好的解决方案
<android.support.design.widget.AppBarLayout 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="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<FrameLayout
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"
app:contentInsetStart="0dp"
app:contentInsetEnd="0dp"
app:popupTheme="@style/AppTheme.PopupOverlay">
</android.support.v7.widget.Toolbar>
<RelativeLayout
android:layout_width="match_parent"
android:gravity="center"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="?attr/actionBarSize"
android:contentDescription="@string/app_name"
android:id="@+id/logoImageView"
android:layout_centerInParent="true"
android:adjustViewBounds="true"
android:src="@drawable/toolbar_background" />
</RelativeLayout>
</FrameLayout>
</android.support.design.widget.AppBarLayout>
这是我的toolbar_background.xml drawable
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/colorPrimary" />
</shape>
</item>
<item>
<bitmap
android:src="@drawable/splash" android:gravity="center"
/>
</item>
答案 4 :(得分:2)
将图像设置为工具栏的背景,而不是子视图。
ftdi_usb_open(ftdi_context, vendor, product)
答案 5 :(得分:2)
对于使用矢量可绘制或 SVG图像的开发者。
这可以作为工具栏的背景, drawable_toolbar_background.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/primary"/>
</shape>
</item>
<item
android:width="@dimen/toolbar_app_icon_width"
android:height="@dimen/toolbar_app_icon_height"
android:drawable="@drawable/ic_app_logo"
android:gravity="center"/>
</layer-list>
和是的,你必须修改drawable 中项目的宽度和高度,尽管vector drawable已经具有固定大小。
这是您的工具栏视图,
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/drawable_toolbar_background"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme"/>
答案 6 :(得分:2)
您需要将AppBarLayout小部件与工具栏小部件一起使用,并将contentInsetStart
设置为0dp
。否则,工具栏将在开始时大约8dp的填充(如果需要,插入导航按钮)
这是工作代码:
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:fitsSystemWindows="false"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetStart="0dp"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left"
android:adjustViewBounds="true"
android:scaleType="centerInside"
android:src="@drawable/company_logo" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
此外,请确保使用?attr/actionBarSize
作为工具栏的高度,因为这是默认的actionBar高度,并将调整为所有不同的屏幕尺寸。
答案 7 :(得分:0)
即使在执行菜单操作的情况下,最简单的解决方案是这样的:
<android.support.design.widget.AppBarLayout
android:id="@+id/apbMain"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/tlbMain"
android:layout_width="match_parent"
android:layout_height="?android:actionBarSize"
app:navigationContentDescription="@null"
app:title="@null"
app:subtitle="@null"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageButton
android:id="@+id/btnBack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="12dp"
android:paddingBottom="12dp"
android:scaleType="centerInside"
android:background="@null"
android:onClick="onBackClickListener"
android:src="@drawable/ic_navigation_back"
android:visibility="@{showBackBtn ? View.VISIBLE : View.INVISIBLE}" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_gravity="center"
android:src="@drawable/toolbar_icon" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
答案 8 :(得分:0)
我想出了这个解决方案。将您的Toolbar
和ImageView
放在ConstraintLayout
内,并将所有边约束为父对象:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navigationIcon="@drawable/icon" />
<ImageView
android:layout_width="148dp"
android:layout_height="@dimen/dim_24x"
android:contentDescription="@string/accs_label"
android:src="@drawable/label"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
我觉得这是最简单的方法。当然,在较小的手机上,如果您有很多菜单项,则图像视图将与菜单项重叠。
我发现很难在工具栏的布局内部居中放置视图,因为位置是相对于导航按钮和菜单项计算的。因此它将位于导航按钮和菜单项之间,而不是实际工具栏的开始和结束之间。
答案 9 :(得分:0)
将属性 android:contentInsetStart 和 0dp 放在工具栏中。
<android.support.v7.widget.Toolbar
...
...
android:contentInsetStart="0dp">
答案 10 :(得分:-1)
工具栏是一个ViewGroup,您可以对其进行自定义。
尝试:
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:theme="@style/MyMaterialTheme.Base"
android:background="@color/white"
android:elevation="20dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/logo"/>
</androidx.appcompat.widget.Toolbar>