Newer
Older
IrisClientWebSocket / app / src / main / res / drawable / frame_style.xml
Kota on 8 Dec 2022 401 bytes first commit
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!-- 背景色 -->
    <solid android:color="#ffffff" />

    <!-- 角の丸み -->
    <corners android:radius="6dp" />

    <!-- 枠線 width:線の幅、color:線の色 -->
    <stroke
        android:width="2dp"
        android:color="#606060" />

</shape>