gpt4 book ai didi

android - 更改操作栏图标

转载 作者:行者123 更新时间:2023-11-29 15:26:31 25 4
gpt4 key购买 nike

是否可以动态更改操作栏图标?

我已经在 list 中设置了它。我想更改它并通过代码设置它。

我的 list :

    <activity android:name=".plugin.importer.face.FaceActivity"
android:windowSoftInputMode="stateHidden|adjustResize"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.SYNC" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

<intent-filter android:icon="@drawable/new_enabled">
<action android:name="android.intent.action.INSERT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

</activity>

有办法吗?

谢谢。

最佳答案

    ActionBar actionBar = getSupportActionBar(); // || getActionBar();
actionBar.setIcon(getResources().getDrawable(R.drawable.new_enabled));

希望对你有帮助

关于android - 更改操作栏图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12092314/

25 4 0