ActionBar의 MenuItem 아이콘을 프로그래밍 방식으로 변경하는 방법


122

ActionBar에서 MenuItem 아이콘을 프로그래밍 방식으로 변경하는 방법은 무엇입니까? 나는 사용하려고했다

MenuItem menuItem = (MenuItem)findViewById(R.id.action_settings);
menuItem.setIcon(getResources().getDrawable(R.drawable.ic_launcher))

하지만 작동하지 않습니다. 이것은 내 코드입니다.

주요 활동

package com.test;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;

public class MainActivity extends ActionBarActivity {
    private Button button;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button = (Button)findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                MenuItem menuItem = (MenuItem)findViewById(R.id.action_settings);
                menuItem.setIcon(getResources().getDrawable(R.drawable.ic_launcher));
            }
        });
    }

    @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) {
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

main.xml

<menu
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".MainActivity" >

    <item
        android:icon="@drawable/action_settings"
        android:id="@+id/action_settings"
        android:title="@string/action_settings"
        android:orderInCategory="100"
        app:showAsAction="always"/>
</menu>

activity_main

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">
    <Button
        android:id="@+id/button"
        android:text="Set icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

이것은 내가 실행 한 후 가진 예외입니다.

MenuItem menuItem = (MenuItem)findViewById(R.id.action_settings);


11-09 19:52:40.471    1735-1735/com.test E/AndroidRuntime FATAL EXCEPTION: main
    java.lang.ClassCastException: android.support.v7.internal.view.menu.ActionMenuItemView
            at com.test.MainActivity$1.onClick(MainActivity.java:19)
            at android.view.View.performClick(View.java:2485)
            at android.view.View$PerformClick.run(View.java:9080)
            at android.os.Handler.handleCallback(Handler.java:587)
            at android.os.Handler.dispatchMessage(Handler.java:92)
            at android.os.Looper.loop(Looper.java:123)
            at android.app.ActivityThread.main(ActivityThread.java:3683)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:507)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
            at dalvik.system.NativeStart.main(Native Method)

답변:


256

메뉴 레이아웃이 아직 확장되지 않았기 때문에 onCreate ()의 메뉴 항목에 findViewById ()를 사용할 수 없습니다. 전역 메뉴 변수를 만들고 onCreateOptionsMenu ()에서 초기화 한 다음 onClick ()에서 사용할 수 있습니다.

private Menu menu;

onCreateOptionsMenu ()에서

this.menu = menu;

버튼의 onClick () 메서드에서

menu.getItem(0).setIcon(ContextCompat.getDrawable(this, R.drawable.ic_launcher));

onCreateOptionsMenu ()가없는 조각에서는 어떨까요?
AlleyOOP

당신은 아마 당신의 조각에서 활동의 메소드를 호출 할 필요가
Lalith 모한

@LalithMohan, 나는 똑같은 것을 시도했지만 작동하지 않습니다. 메뉴 항목 제목의 글꼴 색상을 변경할 수 있지만 아이콘을 변경할 수 없습니다. 나는 여기에 내 질문을 게시했습니다 : stackoverflow.com/questions/36716450/…
Akeshwar Jha

1
"getDrawable () is deprecated"오류 메시지가 나타납니다. 가능한 해결책은 다음 스레드에 있습니다 : stackoverflow.com/questions/29041027/…
Alexey

getDrawable은 더 이상 사용되지 않습니다. 누구든지 새로운 솔루션이 있습니까?
솔로

46

Lalith의 대답이 맞습니다.

이 방법을 시도해 볼 수도 있습니다.

button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            invalidateOptionsMenu();
        }
    });

 @Override
 public boolean onPrepareOptionsMenu(Menu menu) {

    MenuItem settingsItem = menu.findItem(R.id.action_settings);
    // set your desired icon here based on a flag if you like
    settingsItem.setIcon(ContextCompat.getDrawable(this, R.drawable.ic_launcher)); 

    return super.onPrepareOptionsMenu(menu);
 }

이것이 그것을하는 방법입니다. +1
lasec0203

8

이것은 나를 위해 작동합니다. 당신의 onOptionsItemSelected(MenuItem item)방법에 있어야합니다item.setIcon(R.drawable.your_icon);


3

이 문제를 다음과 같이 해결했습니다.

에서 onCreateOptionsMenu:

this.menu = menu;
this.menu.add("calendar");
ImageView imageView = new ImageView(getActivity());
imageView.setMinimumHeight(128);
imageView.setMinimumWidth(128);
imageView.setImageDrawable(yourDrawable);
MenuItem item = this.menu.getItem(0);
item.setActionView(imageView);

에서 onOptionsItemSelected:

if (item.getOrder() == 0) {
    //TODO
    return true;
}

3

getViewById () 대신

MenuItem item = getToolbar().getMenu().findItem(Menu.FIRST);

Menu.FIRST메뉴 항목 ID로 대체하십시오 .


3

이 문제를 해결 한 방법은 다음과 같습니다.

1-다음과 같은 필드 변수를 만듭니다. private Menu mMenuItem;

2-invalidateOptionsMenu () 메서드를 재정의합니다.

@Override
public void invalidateOptionsMenu() {
    super.invalidateOptionsMenu();
}

3- invalidateOptionsMenu()귀하의onCreate()

4- mMenuItem = menu다음 onCreateOptionsMenu(Menu menu)과 같이 추가 하십시오 .

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.webview_menu, menu);
    mMenuItem = menu;
    return super.onCreateOptionsMenu(menu);
}

5-방법에서 다음 onOptionsItemSelected(MenuItem item)과 같이 원하는 아이콘을 변경하십시오.

 @Override
public boolean onOptionsItemSelected(MenuItem item) {

    switch (item.getItemId()){

        case R.id.R.id.action_settings:
            mMenuItem.getItem(0).setIcon(R.drawable.ic_launcher); // to change the fav icon
            //Toast.makeText(this, " " + mMenuItem.getItem(0).getTitle(), Toast.LENGTH_SHORT).show(); <<--- this to check if the item in the index 0 is the one you are looking for
            return true;
    }
    return super.onOptionsItemSelected(item);
}

0

에서 사용하는 onMenuItemClick(MenuItem item) 바로 할invalidateOptionsMenu(); item.setIcon(ContextCompat.getDrawable(this, R.drawable.ic_baseline_play_circle_outline_24px));


0

Kotlin 버전 :

toolbar.menu.findItem(R.id.notification).icon =
                    ContextCompat.getDrawable(requireContext(), R.drawable.ic_notification)

toolbar.menu.findItem(R.id.notification).isVisible = true

-1

작동

      MenuItem tourchmeMenuItem; // Declare Global .......

 public boolean onCreateOptionsMenu(Menu menu) 
 {
        getMenuInflater().inflate(R.menu.search, menu);
        menu.findItem(R.id.action_search).setVisible(false);
        tourchmeMenuItem = menu.findItem(R.id.done);
        return true;
 }

    public boolean onOptionsItemSelected(MenuItem item) {

    case R.id.done:
                       if(LoginPreferences.getActiveInstance(CustomViewFinderScannerActivity.this).getIsFlashLight()){
                            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                                mScannerView.setFlash(false);
                                LoginPreferences.getActiveInstance(CustomViewFinderScannerActivity.this).setIsFlashLight(false);
                                tourchmeMenuItem.setIcon(getResources().getDrawable(R.mipmap.torch_white_32));
                            }
                        }else {
                            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                                mScannerView.setFlash(true);
                                LoginPreferences.getActiveInstance(CustomViewFinderScannerActivity.this).setIsFlashLight(true);
                                tourchmeMenuItem.setIcon(getResources().getDrawable(R.mipmap.torch_cross_white_32));
                            }
                        }
                        break;

}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.