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

22 lines
875 B
XML
Raw Normal View History

2020-04-05 13:15:03 +08:00
<?xml version="1.0" encoding="utf-8"?>
2020-08-15 22:05:07 +08:00
<com.huanchengfly.tieba.post.widgets.theme.TintCoordinatorLayout
2020-04-05 13:15:03 +08:00
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: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"
2020-04-05 13:15:03 +08:00
tools:context=".activities.SettingsActivity">
<include
layout="@layout/layout_appbar" />
<LinearLayout
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" />
2020-08-15 22:05:07 +08:00
</com.huanchengfly.tieba.post.widgets.theme.TintCoordinatorLayout>