android-studio - android ActionBar问题?
PHPz
PHPz 2017-04-17 16:14:03
[Android讨论组]

ActionBar无法显示ICON图标

请输入代码

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

package="com.example.fiz.myapplication">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:icon="@mipmap/ic_launcher"
        android:label="demo"

        android:logo="@mipmap/ic_launcher">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

</manifest>

PHPz
PHPz

学习是最好的投资!

全部回复(2)
PHP中文网

跟随时代的潮流,用Toolbar吧,actionBar真是太不好用了

布局

 <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_collapseMode="pin"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

代码

 // App Logo
        mToolbar.setLogo(R.mipmap.ic_launcher);
        // Title
        mToolbar.setTitle("My Title");
        mToolbar.setTextAlignment(View.TEXT_ALIGNMENT_CENTER);
        // Sub Title
        mToolbar.setSubtitle("Sub title");

        setSupportActionBar(mToolbar);

        // Navigation Icon 要設定在 setSupoortActionBar 才有作用,否則會出現 back button
        mToolbar.setNavigationIcon(R.mipmap.ic_back);

        //menu 点击事件
        mToolbar.setOnMenuItemClickListener(this);
伊谢尔伦

你应该用的是AppCompatActivity吧,V7库好像不能够在XML文件中直接配置android:icon,而且默认是不显示的,所以需要在代码中配置
ActionBar actionBar = getSupportActionBar();

    actionBar.setIcon(R.mipmap.ic_launcher);
    actionBar.setDisplayShowHomeEnabled(true);
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号