Show Doze Dialog only after startup and provide "don't ask again" option

This commit is contained in:
Torsten Grote
2017-11-20 16:27:39 -02:00
parent 92748ac872
commit bb8cb9bcbb
5 changed files with 103 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CheckBox
android:id="@+id/checkbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/margin_activity_horizontal"
android:layout_marginTop="@dimen/margin_activity_vertical"
android:checked="false"
android:text="@string/don_t_ask_again"/>
</FrameLayout>