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

相关推荐
坚持学习前端日记36 分钟前
原生Android开发与JS桥开发对比分析
android·开发语言·javascript
zh_xuan1 小时前
kotlin 测试if表达式、数组等
开发语言·kotlin
、、、、南山小雨、、、、1 小时前
LCEL基本使用和高级使用
android·服务器·windows
Android-Flutter2 小时前
android compose CheckBox, RadioGroup 使用
android·kotlin
ljt27249606612 小时前
Compose笔记(六十六)--ModalNavigationDrawer
android·笔记·android jetpack
Android-Flutter2 小时前
android compose Tab(顶部) 使用
android·kotlin
方白羽2 小时前
Kotlin object 单例设计:为何选择饿汉式而非懒汉式?
android·app·客户端
fundroid2 小时前
使用 Gradle Convention Plugins(约定插件)优化 Android 编译配置
android·gradle·约定插件
Jomurphys3 小时前
Compose 封装 - 倒计时消失容器
android
城东米粉儿3 小时前
android activity启动流程 学习笔记
android