设计想法:
两个动画,其中一个延迟播放,延迟播放的时间刚好是第一个动画播放结束的时间(还有一个用AnimatorSet写的,那个可以循环播放,这个循环播放的方法我不会,我是新手菜鸟,写的很菜。。。 )
circle.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="65dp"/>
<solid android:color="@color/teal_200"/>
</shape>
circle_k.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="300dp"/>
<stroke android:width="5dp"
android:color="@color/teal_200"/>
</shape>
activity.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android