我有一个menu.xml文件:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".StudentMarks" >
<item android:id="@+id/action_example"
android:title="@string/action_example"
android:showAsAction="withText|ifRoom"
style="@style/SelectedYear" />
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never" />
</menu>
项目操作示例的标题代表当前年份(2014年)
我可以在操作栏中看到它,但我不知道如何设置年份的大小。
我想把它变得更大。
我的styles.xml文件
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
<style name="SelectedYear" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:textSize">16sp</item>
</style>
</resources>
答案 0 :(得分:0)
在xml中使用此属性
android:textAppearance="?android:attr/textAppearanceLarge"
答案 1 :(得分:0)
尝试更改styles.xml
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:textSize">20sp</item>
</style>