gpt4 book ai didi

Android更改操作栏菜单文本

转载 作者:行者123 更新时间:2023-11-29 17:36:12 26 4
gpt4 key购买 nike

我是 Android 的新手,我正在进入 Android 操作栏菜单文本是大写形式,但我想要文本 Change#0333 就像我在下面的示例图像中描述的那样。请问我怎样才能做到这一点?谢谢。

enter image description here

这是我的代码:

@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);

menu.getItem(0).setTitle("change#0" + defaultmsisdn.substring(2));

return true;
}

这是我在 res/menu 文件夹中的 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="com.ufoneselfcare.MainActivity" >

<item
android:id="@+id/change_number_menu"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="always|withText"/>

</menu>

最佳答案

在您应用的主题中(在 styles.xml 中),您将拥有一个可以自定义的应用主题。空白的可能看起来有点像这样:

<style name="MyTheme" parent="Theme.AppCompat.Light">

</style>

为了拥有小写菜单项,您需要做的是使用属性 actionMenuTextAppearance,因此使用上面的示例,您将得到如下结果:

<style name="MyTheme" parent="Theme.AppCompat.Light">
<item name="android:actionMenuTextAppearance">@style/MyMenuTextAppearance</item>
</style>

<style name="MyMenuTextAppearance" parent="TextAppearance.AppCompat.Widget.ActionBar.Menu">
<item name="android:textAllCaps">false</item>
</style>

关于Android更改操作栏菜单文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30440070/

26 4 0