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