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