亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

android ActionBar問題?

android ActionBar問題?

湖上湖 2018-07-03 18:14:37
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>
查看完整描述

2 回答

?
三國紛爭

TA貢獻1804條經驗 獲得超7個贊

你應該用的是AppCompatActivity吧,V7庫好像不能夠在XML文件中直接配置android:icon,而且默認是不顯示的,所以需要在代碼中配置
ActionBar actionBar = getSupportActionBar();

    actionBar.setIcon(R.mipmap.ic_launcher);    
    actionBar.setDisplayShowHomeEnabled(true);


查看完整回答
反對 回復 2018-07-09
?
幕布斯6054654

TA貢獻1876條經驗 獲得超7個贊

跟隨時代的潮流,用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);



查看完整回答
反對 回復 2018-07-09
  • 2 回答
  • 0 關注
  • 441 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號