我无法在Android应用程序中看到应用程序名称

问题描述 投票:0回答:1

我在操作栏上没有得到我的应用程序名称。

所以请帮助我,隐藏起来的原因和解决方案是什么

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   >

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">


            android:id="@+id/my_Toolbar"
            layout="@layout/my_toolbar"

        <com.google.android.material.tabs.TabLayout
            android:id="@+id/tabLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.viewpager.widget.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/appBarLayout"/>

</RelativeLayout>
android android-studio android-layout menu android-actionbar
1个回答
0
投票

在清单文件中的相应活动处添加标签,例如:

© www.soinside.com 2019 - 2024. All rights reserved.