mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-19 21:49:18 +01:00
7526a985fb
* Add option to disable joystick recentering
20 lines
696 B
XML
20 lines
696 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#20FFFFFF" />
|
|
<stroke
|
|
android:width="2dp"
|
|
android:color="#25FFFFFF" />
|
|
<size
|
|
android:width="25dp"
|
|
android:height="25dp" />
|
|
<corners
|
|
android:bottomLeftRadius="10dp"
|
|
android:bottomRightRadius="10dp"
|
|
android:topLeftRadius="10dp"
|
|
android:topRightRadius="50dp" />
|
|
</shape>
|
|
</item>
|
|
</layer-list>
|