第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

android ActionBar問(wèn)題?

android ActionBar問(wèn)題?

湖上湖 2018-07-03 18:14:37
ActionBar無(wú)法顯示ICON圖標(biāo)請(qǐng)輸入代碼<?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 回答

?
三國(guó)紛爭(zhēng)

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超7個(gè)贊

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

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


查看完整回答
反對(duì) 回復(fù) 2018-07-09
?
幕布斯6054654

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超7個(gè)贊

跟隨時(shí)代的潮流,用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 要設(shè)定在 setSupoortActionBar 才有作用,否則會(huì)出現(xiàn) back button

        mToolbar.setNavigationIcon(R.mipmap.ic_back);


        //menu 點(diǎn)擊事件

        mToolbar.setOnMenuItemClickListener(this);



查看完整回答
反對(duì) 回復(fù) 2018-07-09
  • 2 回答
  • 0 關(guān)注
  • 451 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)