我正在开发一个Android项目。我给我的应用程序的名称足够长,不适合操作栏的默认大小。任何人都可以告诉我如何拼写文字。?
答案 0 :(得分:0)
您可以更改操作栏标题的文字大小,如下所示。
ID | B_ID | SUM
-------------|-------------|---------
1 | 400 | 50
2 | 500 | 50
并以自定义样式覆盖默认标题大小:
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:id="@+id/toolbar"
app:titleTextAppearance="@style/Toolbar.TitleText" />
希望这项工作!