mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
21 lines
792 B
XML
21 lines
792 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="@color/RbxGray4" />
|
|
<corners android:topLeftRadius="2dp" android:topRightRadius="2dp" />
|
|
<padding
|
|
android:left="1dp"
|
|
android:right="1dp"
|
|
android:top="1dp" />
|
|
</shape>
|
|
</item>
|
|
<item>
|
|
<shape android:shape="rectangle" >
|
|
<padding android:top="4dp" android:bottom="4dp" android:left="2dp" android:right="3dp"/>
|
|
<corners android:topLeftRadius="2dp" android:topRightRadius="2dp" />
|
|
<solid android:color="@color/RbxGray6" />
|
|
</shape>
|
|
</item>
|
|
</layer-list> |