Android开源之圆形的ImageView

接下来会对一些好的开源,做一些小demo。方便以后使用:
先看效果图:
Android开源之圆形的ImageView_第1张图片
第一步:在app/build.gradle文件中添加:

dependencies {
    ...
    compile 'de.hdodenhof:circleimageview:2.1.0'
    ...
}

记得同步一下。
第二步:使用


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <de.hdodenhof.circleimageview.CircleImageView
            android:id="@+id/profile_image"
            android:layout_width="96dp"
            android:layout_height="96dp"
            android:layout_centerInParent="true"
            android:src="@drawable/profile"
            app:civ_border_color="#FF000000"
            app:civ_border_width="2dp" />
    RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:background="#000"
        android:layout_height="0dp"
        android:layout_weight="1">

        <de.hdodenhof.circleimageview.CircleImageView
            android:id="@+id/profile_image2"
            android:layout_width="96dp"
            android:layout_height="96dp"
            android:layout_centerInParent="true"
            android:src="@drawable/profile"
            app:civ_border_color="#ffffff"
            app:civ_border_width="2dp" />
    RelativeLayout>
LinearLayout>

小结:一般用作头像。

你可能感兴趣的:(Android开源框架)