CircleImageView框架的使用

      

CircleImageView主要是一款圆形图片的处理框架,详细请参考:

http://www.tuicool.com/articles/mQNFJ3
使用很简单,直接在布局中添加该控件就可以了。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="50dp"
    android:orientation="horizontal"
    >
    <de.hdodenhof.circleimageview.CircleImageView
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/iv_driverpicture"
        android:layout_width="96dp"
        android:layout_height="96dp"
        android:src="@drawable/ic_launcher"
        app:border_width="2dp"
        app:border_color="#FFFFFF"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true" />
    <TextView
        android:layout_marginLeft="50dp"
        android:id="@+id/tv_driverphonenum"
        android:gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="13082745555"/>
    <Button
        android:layout_marginLeft="80dp"
        android:layout_marginRight="30dp"
        android:id="@+id/btn_invitedriver"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="邀请"
         />
</LinearLayout>
后面就是和其他控件一样正常使用就可以了。

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