我正在开发一个Android应用程序,我想将窗口标题置于标题栏中。
我正在使用自定义主题。
styles.xml:
<style name="CustomTheme" parent="android:Theme">
<item name="android:windowTitleBackgroundStyle">@style/CustomTitleBackground</item>
<item name="android:windowTitleSize">45dp</item>
</style>
的themes.xml:
<style name="CustomTitleBackground">
<item name="android:background">@color/customblue</item>
</style>
的AndroidManifest.xml:
<activity
...
android:theme="@style/CustomTheme">
...
</activity>
我找到的唯一方法是使用java代码将标题居中,或者将标题栏定义为RelativeLayout
,其中包含TextView
。我想只使用样式/主题。
有没有办法只使用样式使标题居中?