8 lines
380 B
XML
8 lines
380 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<corners android:radius="40dp" /> <!-- Fully rounded corners for pill shape -->
|
|
<solid android:color="#00000000" /> <!-- Transparent fill -->
|
|
<stroke android:width="1.5dp" android:color="#40FFFFFF" /> <!-- Glass border -->
|
|
</shape>
|