在Theme.AppCompat.Light中添加图标

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Theme.AppCompat.Light中添加图标相关的知识,希望对你有一定的参考价值。

我在我的android应用程序中使用Theme.AppCompat.Light,我想在操作栏的左上角添加一个图标。我该怎么做?这是我的Android Manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.progettoium">
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.AppCompat.Light">
    <activity android:name=".ListaPrenotazioni"></activity>
    <activity android:name=".ListaCorsi" />
    <activity android:name=".ListaLiberi" />
    <activity
        android:name=".LoginSignup"
        android:label="@string/title_activity_login_signup"
        android:theme="@style/AppTheme.NoActionBar" />
    <activity
        android:name=".Signup"
        android:theme="@style/AppTheme.NoActionBar" />
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

答案

你可以用编程方式添加它

getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeAsUpIndicator(R.drawable.ic_action_refresh);

在你的主要活动中

以上是关于在Theme.AppCompat.Light中添加图标的主要内容,如果未能解决你的问题,请参考以下文章

Theme.AppCompat.Light的解决方法

Theme.AppCompat.Light的解决方法报错

Theme.AppCompat.Light.NoActionBar AdjustResize 不起作用

Theme.AppCompat.Light无法找到问题

theme.appcompat.light.darkactionbar 怎么调整title的颜色

xml Theme.AppCompat.Light.NoActionBar