mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-01-07 13:23:15 +01:00
add a toggle for hiding Whats New
This commit is contained in:
parent
2c76cad230
commit
d70fe4e281
@ -20,6 +20,7 @@ class SettingsActivity : SimpleActivity() {
|
|||||||
|
|
||||||
setupCustomizeColors()
|
setupCustomizeColors()
|
||||||
setupUseEnglish()
|
setupUseEnglish()
|
||||||
|
setupAvoidWhatsNew()
|
||||||
setupBrushSize()
|
setupBrushSize()
|
||||||
updateTextColors(settings_holder)
|
updateTextColors(settings_holder)
|
||||||
}
|
}
|
||||||
@ -40,6 +41,14 @@ class SettingsActivity : SimpleActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun setupAvoidWhatsNew() {
|
||||||
|
settings_avoid_whats_new.isChecked = config.avoidWhatsNew
|
||||||
|
settings_avoid_whats_new_holder.setOnClickListener {
|
||||||
|
settings_avoid_whats_new.toggle()
|
||||||
|
config.avoidWhatsNew = settings_avoid_whats_new.isChecked
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun setupBrushSize() {
|
private fun setupBrushSize() {
|
||||||
settings_show_brush_size.isChecked = config.showBrushSize
|
settings_show_brush_size.isChecked = config.showBrushSize
|
||||||
settings_show_brush_size_holder.setOnClickListener {
|
settings_show_brush_size_holder.setOnClickListener {
|
||||||
|
@ -56,6 +56,29 @@
|
|||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/settings_avoid_whats_new_holder"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="@dimen/medium_margin"
|
||||||
|
android:background="?attr/selectableItemBackground"
|
||||||
|
android:paddingBottom="@dimen/activity_margin"
|
||||||
|
android:paddingLeft="@dimen/normal_margin"
|
||||||
|
android:paddingRight="@dimen/normal_margin"
|
||||||
|
android:paddingTop="@dimen/activity_margin">
|
||||||
|
|
||||||
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
||||||
|
android:id="@+id/settings_avoid_whats_new"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@null"
|
||||||
|
android:clickable="false"
|
||||||
|
android:paddingLeft="@dimen/medium_margin"
|
||||||
|
android:paddingStart="@dimen/medium_margin"
|
||||||
|
android:text="@string/avoid_whats_new"/>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:id="@+id/settings_show_brush_size_holder"
|
android:id="@+id/settings_show_brush_size_holder"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
Loading…
Reference in New Issue
Block a user