Shape drawable not working?

2019-09-20 17:36发布

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="ring"
    android:thickness="3dp"
    android:innerRadius="34dp">

    <solid android:color="@color/colorAccent"/>

</shape>

I want to create ring but nothing appears.

3条回答
Ridiculous、
2楼-- · 2019-09-20 18:04

You can try like this for ring shape with fill transparent. set this drawable to your control.

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
  <corners android:radius="10dip" /> 
  <stroke android:width="2dip" android:color="@color/white" /> 
  <size android:width="100dp" android:height="100dp" /> 
  <solid android:color="@android:color/transparent" /> 
  </shape>
查看更多
Explosion°爆炸
3楼-- · 2019-09-20 18:07

use this code,

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:top="4dp"
        android:right="4dp"
        android:bottom="4dp"
        android:left="4dp">
        <shape
            android:shape="oval">
            <solid android:color="#ff0000" />
        </shape>
    </item>
    <item>
        <shape
            android:shape="oval">
            <stroke android:width="2dp"
                android:color="#ff0000"/>
        </shape>
    </item>
</layer-list>

using ring shape

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="ring"
    android:innerRadius="15dp"
    android:thickness="10dp"
    android:useLevel="false">
    <solid android:color="#ff0000" />

</shape>
查看更多
我命由我不由天
4楼-- · 2019-09-20 18:08

You can create ring from following code

 <shape xmlns:android="http://schemas.android.com/apk/res/android"  
        android:shape="oval">
      <corners android:radius="10dip" /> 
      <stroke android:width="2dip" android:color="#ffffff" /> 
      <size android:width="75dp" android:height="75dp" />  
      </shape>
查看更多
登录 后发表回答