Android Studio 3.2无法在Library Module中预览自定义控件

发布于 2022-09-11 14:32:34 字数 1099 浏览 10 评论 0

问题描述

在Android Studio 3.2中的Library Module中无法预览自定义控件。而在3.1.2中就没有问题。

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)
简单自定义控件代码:

class IconLabel : LinearLayout {
  constructor(context: Context?) : super(context)
  constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)
  constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs,
      defStyleAttr)

  @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
  constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int, defStyleRes: Int) : super(
      context, attrs, defStyleAttr, defStyleRes)

  init {

    val view = ImageView(context)
    view.setImageResource(R.mipmap.ic_launcher)
    addView(view, LayoutParams(100, 100))

  }
}

在application项目中的预览效果:
图片描述

在library中的预览效果:
图片描述

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文