mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-10 11:36:41 +03:00
48cf1263bc
The activity adds the following functionalities: * Lists installed drivers * Allows the user to install new drivers, or remove installed ones * Allows the user to select the driver that will be used by the emulator
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<style name="RoundedAppImage">
|
|
<item name="cornerFamily">rounded</item>
|
|
<item name="cornerSize">6dp</item>
|
|
</style>
|
|
|
|
<style name="ChipChoice.Material">
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
<item name="colorOnPrimary">@color/colorPrimary</item>
|
|
</style>
|
|
|
|
<style name="ChipChoice" parent="Widget.MaterialComponents.Chip.Choice">
|
|
<item name="android:textAllCaps">true</item>
|
|
<item name="chipStartPadding">8dp</item>
|
|
<item name="chipEndPadding">8dp</item>
|
|
<item name="materialThemeOverlay">@style/ChipChoice.Material</item>
|
|
<item name="shapeAppearance">@style/ShapeAppearance.MaterialComponents.LargeComponent</item>
|
|
</style>
|
|
|
|
<style name="Widget.App.OutlinedCard" parent="Widget.MaterialComponents.CardView">
|
|
<item name="cardBackgroundColor">@android:color/transparent</item>
|
|
<item name="cardElevation">0dp</item>
|
|
<item name="strokeColor" tools:ignore="PrivateResource">@color/mtrl_btn_stroke_color_selector</item>
|
|
<item name="strokeWidth">1dp</item>
|
|
<item name="android:clickable">true</item>
|
|
</style>
|
|
</resources>
|