我正在尝试利用主题来创建夜间模式主题。但是,似乎样式设置不正确。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:longClickable="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="?commentHeader">
attrs.xml
<declare-styleable name="AppTheme">
<attr name="commentHeader" format="reference" />
</declare-styleable>
主题.xml
<style name="AppTheme.Base" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowNoTitle">true</item>
<item name="commentHeader">@style/CommentHeaderLight</item>
</style>
theme.xml:CommentHeaderLight
<style name="CommentHeaderLight">
<item name="android:background">@drawable/comment_header_background</item>
<item name="android:paddingLeft">16dp</item>
<item name="android:paddingRight">16dp</item>
<item name="android:paddingTop">8dp</item>
<item name="android:paddingBottom">8dp</item>
</style>
最终视图显示为股票背景且没有填充。我是否正确解决了这个问题,还是有其他方法可以做到这一点?