Anko主题和风格

时间:2017-11-28 03:14:45

标签: android kotlin anko

有没有办法在Anko的布局中添加主题样式?感谢

<RelativeLayout
android:id="@+id/rlHeaderLayout"
style="?defaultStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="?topBarThemeContext">

1 个答案:

答案 0 :(得分:2)

我只是谷歌提出同样的问题,并找到答案here

主题

Anko支持主题覆盖(xml方式将android:theme参数&gt;添加到任何视图中)也可以在任何视图或布局之前通过themed前缀添加:

kotlin themedLinearLayout(ThemeOverlay_AppCompat_Dark) { 
  orientation = VERTICAL   
  gravity = BOTTOM 
}