GamingMode: Adjust performance slider style
- Remove perf indicator title and white step mark on the slider
- Align perf indicator text to the slider padding
Signed-off-by: Nauval Rizky <enuma.alrizky@gmail.com>
diff --git a/app/src/main/res/layout/gaming_perofrmance_layout.xml b/app/src/main/res/layout/gaming_perofrmance_layout.xml
index b2f0845..639a176 100644
--- a/app/src/main/res/layout/gaming_perofrmance_layout.xml
+++ b/app/src/main/res/layout/gaming_perofrmance_layout.xml
@@ -1,12 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent" android:layout_height="match_parent"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/performance_title"
- android:textAppearance="@style/TextAppearance.AppCompat.Subhead" />
<SeekBar
android:id="@+id/performance_seek"
@@ -14,27 +10,31 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="6"
- android:progress="3" />
+ android:progress="3"
+ android:tickMark="@null" />
<LinearLayout
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:paddingHorizontal="16dp">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
- android:gravity="left"
- android:text="@string/performance_text_for_powersave" />
+ android:gravity="start"
+ android:text="@string/performance_text_for_powersave"
+ android:textSize="@dimen/perf_indicator_text_size" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
- android:gravity="right"
- android:text="@string/performance_text_for_performance" />
+ android:gravity="end"
+ android:text="@string/performance_text_for_performance"
+ android:textSize="@dimen/perf_indicator_text_size" />
</LinearLayout>
-</LinearLayout>
\ No newline at end of file
+</LinearLayout>
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
index 57791d6..3ed190a 100644
--- a/app/src/main/res/values/dimens.xml
+++ b/app/src/main/res/values/dimens.xml
@@ -9,4 +9,5 @@
<dimen name="gaming_menu_padding">12dp</dimen>
<dimen name="screenrecord_dialog_padding">18dp</dimen>
<dimen name="screenrecord_logo_size">24dp</dimen>
-</resources>
\ No newline at end of file
+ <dimen name="perf_indicator_text_size">12sp</dimen>
+</resources>