此代码低于它正在改变工具栏的一般标题大小,但我需要更改菜单项文本大小。我尝试了很多问题的答案,但它并没有直接影响菜单项的大小。我想在项目应用时更改:showAsAction =" ifRoom"。你知道吗?
菜单项 (我需要更改此尺寸)
android:id="@+id/try"
app:showAsAction="ifRoom"
android:title="0"
/>
样式Xml
<style name="ActionBar.nameText" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
<item name="android:textSize">50sp</item>
<item name="android:textStyle">bold</item>
</style>
工具栏
android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
android:titleTextAppearance="@style/ActionBar.nameText"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/header">
<Button
android:id="@+id/level_text"
android:background="@drawable/levelstar"
android:layout_width="50dp"
android:layout_height="50dp"
android:text="15"
android:textSize="15sp"
android:layout_centerHorizontal="true"/>
/>
</RelativeLayout>
图片
答案 0 :(得分:5)
您可以通过两种方式执行此操作,具体取决于您希望所有内容的外观/功能。
选项1:
为整个弹出菜单创建自定义样式。 唯一的缺点是它会改变所有菜单项而不仅仅是一个。
在Styles.xml中创建样式
<style name="MyMenu">
<item name="android:textSize">17sp</item> //size desired.
<item name="android:textColor">@color/colorAccent</item> //font color
<item name="android:background">#FFFFFF</item> //background
</style>
然后将此样式应用于工具栏:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/MyMenu" //Important line
/>
结果变为:
选项编号2
您可以以编程方式将单个菜单项设置为具有自定义字体和样式。要做到这一点,您只需要知道您想要操作的任何菜单项的索引。
在onCreateOptionsMenu中,您需要添加以下内容:
@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);
MenuItem item = menu.getItem(0); //here we are getting our menu item.
SpannableString s = new SpannableString(item.getTitle()); //get text from our menu item.
s.setSpan(new ForegroundColorSpan(Color.RED), 0, s.length(), 0); //here I am just setting a custom color to the menu item. leave this out if you want it left at black.
s.setSpan(new RelativeSizeSpan(.7f),0,s.length(),0); //here is where we are actually setting the size with a float (proportion).
item.setTitle(s); //Then just set the menu item to our SpannableString.
return true;
}
现在看起来像这样: