首页 > 解决方案 > 如何将应用程序的图标与第一个活动的图标分开?

问题描述

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

在此处输入图像描述

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

标签: androidandroid-manifest

解决方案


看一下这个:

<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);
    }
    

推荐阅读