mirror of
https://github.com/gsantner/dandelion
synced 2024-11-16 17:32:08 +01:00
vanitasvitae
b9221099c2
Rewrote ThemedSettings by inheriting Preference classes Fixed issues pointed out by gsantner Added back circle color picker preview to Settings and reflect color changes immediatelly :D Removed some debug messages and unified usage of Themeable
29 lines
No EOL
1.2 KiB
XML
29 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/settings__appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/settings__toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
app:layout_scrollFlags="scroll|enterAlways|snap"
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/settings__fragment_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
</LinearLayout> |