自定义加载程序,例如Android中的Instagram

时间:2019-03-18 20:59:27

标签: android android-animation android-imageview

我尝试创建像这样的自定义圆角imageview。我搜索了它,找到了一些示例,但是我也要创建进度条,我的意思是在这个蓝色边框中取得进展,例如instagram。 谁能给我一些建议,如何创建像这样的加载器? 谢谢

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以为此创建自定义布局。将布局的背景(无论是约束,相对还是线性)设置为已创建的可绘制对象,并将进度条放置在其中。

*编辑:可绘制文件*

<?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android" >

        <item>
            <shape>
                <solid

                    android:color="@color/white"/>   <!--Foreground color-->
                <stroke
                    android:color="@color/blue"
                    android:width="1dp"/> <!--stroke color-->
                <corners
                    android:radius="50dp"/>

            </shape>
        </item>


    </selector>