Android开发标识正在直播的小动画
一般直播外面的列表都有小图标,标识那个用户正在直播,这时就需要正在直播的小动画
一、思路:
用gif图
二、效果图:
三、关键代码:
<FrameLayout
android:layout_width="100dp"
android:layout_height="100dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/thumb"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@mipmap/head2"
app:riv_corner_radius="12dp" />
<pl.droidsonroids.gif.GifImageView
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_gravity="bottom"
android:layout_marginLeft="7dp"
android:layout_marginBottom="7dp"
android:src="@mipmap/icon_main_voice_gif" />
</FrameLayout>
四、项目demo源码结构图:
有问题或者需要完整源码看简介联系我,或者私信我