Newer
Older
IrisClient / app / src / main / res / drawable / frame_style.xml
yugo-asano on 4 Oct 2022 401 bytes GameActivityのXML完成させる
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle">
  4.  
  5. <!-- 背景色 -->
  6. <solid android:color="#ffffff" />
  7.  
  8. <!-- 角の丸み -->
  9. <corners android:radius="6dp" />
  10.  
  11. <!-- 枠線 width:線の幅、color:線の色 -->
  12. <stroke
  13. android:width="2dp"
  14. android:color="#606060" />
  15.  
  16. </shape>