Android ActionBar-左上隅icon設定とイベント構成

8695 ワード

質問:
      Actionbarを使用する場合、デフォルトでは左上隅にソフトウェアのリリース時のLOGOと同じアイコンがありますが、ほとんどの場合、デフォルトのアイコンで表示するのがよく、ソフトウェア全体が統一されるだけでなく、手間も省けます.しかし、場合によっては、異なるインタフェースの左上隅のアイコンが異なることを望んでいるか、デフォルトのLOGOを使用したくない場合があります.例えば、LOGOはベースカラーがあり、Actionbarに置くのは面白くありません.
 
解決策:
      コンフィギュレーションファイルManifestにandroid:logo='@drawable/logo_top'のプロパティを追加し、プログラム全体に統一されたカスタムアイコンを追加する場合は、アプリケーションラベルの下にプロパティを追加します.異なるactivityに対して異なる左上隅アイコンを追加したい場合は、それぞれのactivityラベルの下に属性を追加し、異なるピクチャリソースを指すようにすればよい.
 
上のネットユーザーが出した方法はとても仕方がない.
 
次にdemoを示してテストします.
AndroidManifest.xml :
 
 
xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.iconshow"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.iconshow.MainActivity"
            android:logo="@drawable/ic_launcher_settings"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

manifest>

 
JAvaコードは次のとおりです.
package com.example.iconshow;

import android.os.Bundle;
import android.app.ActionBar;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.Window;
import android.view.WindowManager;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        //set icon in java,here set icon in AndroidManifest.xml, so ignore following code
/*
        requestWindowFeature(Window.FEATURE_LEFT_ICON);
        
        getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
        R.drawable.ic_launcher_settings);
*/
        ActionBar actionBar = this.getActionBar();
        actionBar.setDisplayHomeAsUpEnabled(true);

        setContentView(R.layout.activity_main);
        
    }

    
    
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // TODO Auto-generated method stub
        
        //add top-left icon click event deal
        switch(item.getItemId()){
        case android.R.id.home:
            finish();
        }
        
        return super.onOptionsItemSelected(item);
    }



    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

画面の左上に「
@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // TODO Auto-generated method stub
        
        //add top-left icon click event deal
        switch(item.getItemId()){
        case android.R.id.home:
            finish();
        }
        
        return super.onOptionsItemSelected(item);
    }

....
 
 
 
 
 
 
 
転載先:https://www.cnblogs.com/MMLoveMeMM/articles/3617181.html