set标签对齐

a2mppw5e  于 2021-07-12  发布在  Java
关注(0)|答案(0)|浏览(128)

我希望标签(工具栏标题)居中对齐。我应该怎么做?我参考了一些逻辑,没有发现它们有效,它们也不起作用。所以请引导我通过它。
这是导航文件:

<?xml version="1.0" encoding="utf-8"?>
<navigation 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:id="@+id/mobile_navigation"
app:startDestination="@id/current_weather_fragment">
<fragment
    android:id="@+id/current_weather_fragment"
    android:name="com.example.wheatherapp.UI.Weather.CurrentWeather.CurrentWeatherFragment"
    android:label="current_weather_fragment"

    tools:layout="@layout/current_weather_fragment" />
<fragment
    android:id="@+id/future_weather_fragment"
    android:name="com.example.wheatherapp.UI.Weather.FutureWeather.FutureWeatherListFrag.FutureWeatherFragment"
    android:label="future_weather_fragment"
    tools:layout="@layout/future_weather_fragment" />
<fragment
    android:id="@+id/future_detail_weather"
    android:name="com.example.wheatherapp.UI.Weather.FutureWeather.FutureDetailFrag.FutureDetailWeather"
    android:label="future_detail_weather_fragment"
    tools:layout="@layout/future_detail_weather_fragment" />
<fragment
    android:id="@+id/setting_fragment"
    android:name="com.example.wheatherapp.UI.Setting.SettingFragment"
    android:label="SettingFragment" />
</navigation>

这是maintactivity.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 
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=".UI.MainActivity">

<com.google.android.material.appbar.AppBarLayout
    android:id="@+id/appbar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    android:theme="@style/ToolbarTheme">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize"
        android:background="?colorPrimary"
        />
</com.google.android.material.appbar.AppBarLayout>

<androidx.fragment.app.FragmentContainerView
    android:id="@+id/nav_host_frag"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintTop_toBottomOf="@id/appbar_layout"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintBottom_toTopOf="@id/bottom_nav"
    app:navGraph="@navigation/mobile_navigation"
    app:defaultNavHost="true"
    android:name="androidx.navigation.fragment.NavHostFragment" />

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_nav"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:menu="@menu/bottom_nav_menu"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"/>
    </androidx.constraintlayout.widget.ConstraintLayout>

这是我希望标题对齐的图像centered:the uploaded 一
样式.xml

<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.WheatherApp" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
    <!-- Primary brand color. -->
    <item name="colorPrimary">@color/purple_200</item>
    <item name="colorPrimaryVariant">@color/purple_700</item>
    <item name="colorOnPrimary">@color/black</item>
    <!-- Secondary brand color. -->
    <item name="colorSecondary">@color/teal_200</item>
    <item name="colorSecondaryVariant">@color/teal_200</item>
    <item name="colorOnSecondary">@color/black</item>
    <!-- Status bar color. -->
    <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
    <!-- Customize your theme here. -->
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="ToolbarTheme" parent="ThemeOverlay.MaterialComponents.ActionBar">
    <item name="android:textColorPrimary">@color/white</item>
    <item name="android:textColorSecondary">#EEEEEE</item>
    <item name="android:gravity">center_vertical|center_horizontal</item>
    <item name="background">?colorPrimary</item>
</style>
</resources>

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题