android 图片圆角处理 android 5.0 以上

跟着时代的潮流,跟着android进化的路径,我采用的是最简单,
只能在android 5.0 以上才可以使用,现在大部分安卓机器都是5.0以上的。 使用android v7的view CardView就可以。

code如下:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.dressplus.androidndk.activitys.CardViewActivity">


<android.support.v7.widget.CardView
    android:id="@+id/card_view"
    android:layout_width="80dp"
    android:layout_height="80dp"
    android:layout_marginLeft="20dp"
    android:layout_marginTop="30dp"
    app:cardBackgroundColor="@color/colorAccent"
    app:cardCornerRadius="10dp"
    app:cardElevation="4dp"
    app:contentPadding="0dp">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="centerCrop"
        android:src="@mipmap/jiege" />
</android.support.v7.widget.CardView>


<android.support.v7.widget.CardView
    android:layout_width="80dp"
    android:layout_height="80dp"
    android:layout_marginLeft="20dp"
    android:layout_marginTop="30dp"
    app:cardCornerRadius="40dp"
    app:cardElevation="4dp">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="centerCrop"
        android:src="@mipmap/jiege" />
</android.support.v7.widget.CardView>

</LinearLayout>

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
禁止转载,如需转载请通过简信或评论联系作者。

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 174,950评论 25 709
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    passiontim阅读 15,651评论 2 45
  • 一个喜事,我土墙小梦想成真。就好像我们几个的孩子长大了一样,会被大家熟知,不舍却欣慰。 最近在反思,为了偶像似乎任...
    9e3124d0a2cf阅读 1,553评论 0 0
  • 善良比聪明更难,聪明是一种天赋,而善良是一种选择 作为一名准妈妈,我一直认为孩子善良比拥有其他的许多品质和技能都重...
    彭文鱼阅读 4,768评论 2 2
  • Nginx简介   Nginx 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务...
    spliteJM阅读 4,968评论 1 19