美文网首页
kotlin android api记录

kotlin android api记录

作者: 差很多先生CL | 来源:发表于2018-12-07 09:57 被阅读0次

本篇记录一些kotlin搭配android专属的api写法或者一些过期的api的替代写法,不时更新。

resources.getColor(过时)

这个方法过时
如果写成resources..getDrawable(R.drawable.ic_logo, null)


resources..getDrawable
推荐

ContextCompat.getDrawable(context, R.drawable.XXX)
ContextCompat.getColor(context, R.drawable.XXX)

去掉按钮阴影

 <Button
   ......
    style="?android:attr/borderlessButtonStyle"/>

相关文章

网友评论

      本文标题:kotlin android api记录

      本文链接:https://www.haomeiwen.com/subject/myizcqtx.html