mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Android: Improve pause menu in light theme
This commit is contained in:
parent
6a06b4970d
commit
7080e307dd
|
@ -8,7 +8,7 @@
|
|||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@color/emulationActivityPauseTitleBackground"
|
||||
android:background="@color/colorPrimary"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
|
@ -28,6 +28,7 @@
|
|||
android:layout_marginTop="4dp"
|
||||
android:text="Title"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
||||
android:textColor="?android:textColorPrimary"
|
||||
android:scrollHorizontally="true"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
|
@ -43,6 +44,7 @@
|
|||
android:layout_marginEnd="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:text="Code - Path"
|
||||
android:textColor="?android:textColorPrimary"
|
||||
android:scrollHorizontally="true"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
|
@ -66,6 +68,7 @@
|
|||
android:layout_height="60dp"
|
||||
android:layout_marginEnd="5dp"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:tint="?android:textColorPrimary"
|
||||
android:contentDescription="Pause Menu"
|
||||
android:src="@drawable/ic_baseline_menu_24" />
|
||||
|
||||
|
@ -75,6 +78,7 @@
|
|||
android:layout_height="60dp"
|
||||
android:layout_marginEnd="5dp"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:tint="?android:textColorPrimary"
|
||||
android:contentDescription="Controller Settings"
|
||||
android:src="@drawable/ic_baseline_gamepad_24" />
|
||||
|
||||
|
@ -84,6 +88,7 @@
|
|||
android:layout_height="60dp"
|
||||
android:layout_marginEnd="5dp"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:tint="?android:textColorPrimary"
|
||||
android:contentDescription="Settings"
|
||||
android:src="@drawable/ic_baseline_settings_24" />
|
||||
|
||||
|
@ -93,6 +98,7 @@
|
|||
android:layout_height="60dp"
|
||||
android:layout_marginEnd="5dp"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:tint="?android:textColorPrimary"
|
||||
android:contentDescription="Quit"
|
||||
android:src="@drawable/ic_baseline_exit_to_app_24" />
|
||||
|
||||
|
|
|
@ -9,5 +9,4 @@
|
|||
<color name="fab_background">#222222</color>
|
||||
|
||||
<color name="emulationActivityPauseBackground">#cc000000</color>
|
||||
<color name="emulationActivityPauseTitleBackground">#99111111</color>
|
||||
</resources>
|
||||
|
|
|
@ -9,5 +9,4 @@
|
|||
<color name="fab_background">#ffffffff</color>
|
||||
|
||||
<color name="emulationActivityPauseBackground">#eeffffff</color>
|
||||
<color name="emulationActivityPauseTitleBackground">#996200EE</color>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue