TiebaLite/app/src/main/res/layout/activity_settings.xml

20 lines
866 B
XML
Raw Normal View History

2020-04-05 13:15:03 +08:00
<?xml version="1.0" encoding="utf-8"?>
2021-08-19 17:05:17 +08:00
<com.huanchengfly.tieba.post.widgets.theme.TintCoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-04-05 13:15:03 +08:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-02-12 15:41:46 +08:00
app:backgroundTint="@color/default_color_window_background"
2022-08-02 16:20:48 +08:00
tools:context=".activities.PreferencesActivity">
2020-04-05 13:15:03 +08:00
2021-08-19 17:05:17 +08:00
<include layout="@layout/layout_appbar" />
2020-04-05 13:15:03 +08:00
<LinearLayout
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-08-19 17:05:17 +08:00
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2020-04-05 13:15:03 +08:00
2020-08-15 22:05:07 +08:00
</com.huanchengfly.tieba.post.widgets.theme.TintCoordinatorLayout>