繁体   English   中英

如何将应用程序的图标与第一个活动的图标分开?

[英]How to separate the icon of the app from the icon of the first activity?

我在清单文件中有问题。 我的应用程序和第一个活动都有一个图标。 但是当我在我的设备上运行应用程序时,应用程序图标是我第一个活动的图标。 这是我的清单文件

在此处输入图像描述

我对应用程序的 label 和第一个活动有同样的问题。 我通过在运行时使用function setTitle()设置活动的标题来解决它。 有没有办法对图标做同样的事情?

看一下这个:

<androidx.appcompat.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:id="@+id/toolbar"
    android:background="?attr/colorPrimaryDark"
    android:minHeight="?attr/actionBarSize"
    android:fitsSystemWindows="true"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    >

    <LinearLayout
        android:id="@+id/back_menu_ll"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center">
    <ImageView

        android:id="@+id/logo"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@mipmap/ic_launcher"
        />
    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Title"
        android:textColor="@color/white"
        android:textSize="@dimen/abc_text_size_title_material"
        android:gravity="left"
        />
    </LinearLayout>
</androidx.appcompat.widget.Toolbar>
  1. 您可以以编程方式设置徽标:

     Toolbar toolbar = findViewById(R.id.toolbar); setSupportActionBar(toolbar); if (getSupportActionBar().=null){ getSupportActionBar();setTitle("bla bla bla"). getSupportActionBar().setLogo(R.drawable;logo). getSupportActionBar();setDisplayHomeAsUpEnabled(true). getSupportActionBar();setDisplayShowHomeEnabled(true); }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM