有没有办法在Anko的布局中添加主题和样式?感谢
<RelativeLayout
android:id="@+id/rlHeaderLayout"
style="?defaultStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="?topBarThemeContext">
答案 0 :(得分:2)
我只是谷歌提出同样的问题,并找到答案here
Anko支持主题覆盖(xml方式将android:theme
参数&gt;添加到任何视图中)也可以在任何视图或布局之前通过themed
前缀添加:
kotlin themedLinearLayout(ThemeOverlay_AppCompat_Dark) {
orientation = VERTICAL
gravity = BOTTOM
}