我想更改操作栏项的文字大小。 这是我的style.xml:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionMenuTextAppearance">@style/menu_text</item>
<!-- Customize your theme here. -->
</style>
<style name="menu_text">
<item name="android:textSize">20sp</item>
</style>
这适用于android 5,但在android 4上,文本大小是默认值,不会改变。
答案 0 :(得分:1)
在我的项目文件夹res / styles AppTheme 中有如下注释,
$(".optWrapper li").click(function () {
alert();
});
所以你可以用你的应用主题做到这一点。我是通过以下代码完成的,
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
希望这会对你有所帮助。