Android ShapeableImageView rotation in Kotlin code

Android ShapeableImageView rotation in Kotlin code

Kotlin 复制代码
import android.content.Context
import android.util.AttributeSet
import android.util.Log
import com.google.android.material.imageview.ShapeableImageView


class MyImageView(ctx: Context, attrs: AttributeSet?, defStyleAttr: Int) :
    ShapeableImageView(ctx, attrs, defStyleAttr) {
    private val TAG = "fly/${this::class.simpleName}"

    //init代码块相当于Java的static静态代码块。
    init {
        Log.d(TAG, "init")

        rotation = -30F //逆向旋转30°
        Log.d(TAG, "旋转 $rotation")
    }

    constructor(context: Context) : this(context, null, 0) {
        Log.d(TAG, "constructor-1")
    }

    constructor(context: Context, attrs: AttributeSet) : this(context, attrs, 0) {
        Log.d(TAG, "constructor-2")
    }
}

Android官方ShapeableImageView描边/圆形/圆角图,xml布局实现-CSDN博客文章浏览阅读121次。Android RoundedBitmapDrawable:Android官方的圆角图形图象实现方案RoundedBitmapDrawable是Android在support v4的扩展包中新增的实现圆角图形的关键类,借助RoundedBitmapDrawable的帮助,可以轻松的以Android标准方式实现圆角图形图象。现在结合他人的代码加以修改,给出一个以原始图形中心为原点,修剪图片为头像的工具类,此类可以直接在布局文件中加载使用,比。https://blog.csdn.net/zhangphil/article/details/134031190

相关推荐
缺土的鲨鱼辣椒7 小时前
Android 资源类型概述
android
sp427 小时前
安卓原生 MQTT 通讯 Java 实现
android
PD我是你的真爱粉8 小时前
MySQL 事务与并发控制:从日志底层到 MVCC 哲学
android·mysql·adb
用户69371750013849 小时前
Android 17 完整更新详解:Beta 3 已达平台稳定,这些新功能值得期待
android·前端·android studio
kururunga9 小时前
Hvac一次卡顿问题分析
android·车载开发·hvac
fengci.9 小时前
Polar春季个人挑战赛WEB简单部分
android·前端
不会写DN9 小时前
如何使用PHP创建图像验证码
android·开发语言·php
小驰行动派10 小时前
Android Studio中,使用完全免费的Ai来写APP
android·ide·android studio
笔夏11 小时前
【安卓学习之socket】socket.io-client
android·学习
用户942611844629111 小时前
Android开发实战:ListView与RecyclerView使用详解
android