gpt4 book ai didi

android - android studio 中不是全宽工具栏?

转载 作者:太空宇宙 更新时间:2023-11-03 13:45:42 24 4
gpt4 key购买 nike

我在我的应用程序中使用工具栏,我将 TextView 自定义到工具栏的中心,但它不是工具栏屏幕的全宽,并且在左侧保留了一个小屏幕,如下图所示。那么我该怎么做才能使自定义 TextView 位于屏幕和 Toolbar 的中心呢?

我目前的屏幕问题:

enter image description here

我想要的画面:

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:id="@+id/tv_title"
android:textColor="#FFF"
android:background="#F00"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="TITLE"
android:textStyle="bold"
android:textSize="15sp"
android:gravity="center"/>
</android.support.v7.widget.Toolbar>

谢谢!

最佳答案

在您的 ToolBar 中添加以下属性以删除 Left Padding。

 app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"

关于android - android studio 中不是全宽工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42848350/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com