15 lines
440 B
XML
15 lines
440 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<!-- Glass Element: 20% Translucent White -->
|
|
<solid android:color="#33FFFFFF" />
|
|
|
|
<!-- Full Pill Shape -->
|
|
<corners android:radius="100dp" />
|
|
|
|
<!-- Subtle Border: 30% Translucent White -->
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="#4DFFFFFF" />
|
|
</shape>
|