黑马程序员技术交流社区

标题: 圆角圆形图片(2) [打印本页]

作者: linxy06    时间: 2015-11-27 00:34
标题: 圆角圆形图片(2)
布局使用:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:zhy="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:src="@drawable/icon" />

        <com.example.customview05imageview.view.CustomImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            zhy:src="@drawable/icon"
            zhy:type="circle" />

        <com.example.customview05imageview.view.CustomImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            zhy:borderRadius="10dp"
            zhy:src="@drawable/icon"
            zhy:type="round" />

        <com.example.customview05imageview.view.CustomImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            zhy:borderRadius="20dp"
            zhy:src="@drawable/icon"
            zhy:type="round" />
    </LinearLayout>

</ScrollView>
效果:





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2