- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:id="@android:id/background">
|
|
<shape android:shape="rectangle">
|
|
<corners
|
|
android:radius="5dp"
|
|
android:topLeftRadius="5dp"
|
|
android:topRightRadius="5dp"
|
|
android:bottomLeftRadius="5dp"
|
|
android:bottomRightRadius="5dp"/>
|
|
<gradient
|
|
android:startColor="#7fcccccc"
|
|
android:endColor="#7fcccccc"
|
|
android:angle="270"
|
|
android:centerY="0.75"
|
|
android:centerColor="#7fcccccc"/>
|
|
</shape>
|
|
</item>
|
|
<item android:id="@android:id/progress">
|
|
<clip>
|
|
<shape>
|
|
<corners
|
|
android:radius="5dp"
|
|
android:topLeftRadius="5dp"
|
|
android:topRightRadius="5dp"
|
|
android:bottomLeftRadius="5dp"
|
|
android:bottomRightRadius="5dp"/>
|
|
<gradient
|
|
android:startColor="#ff3fb8ff"
|
|
android:endColor="#ff3fb8ff"
|
|
android:angle="270"
|
|
android:centerY="0.75"
|
|
android:centerColor="#ff3fb8ff"/>
|
|
</shape>
|
|
</clip>
|
|
</item>
|
|
</layer-list>
|