gpt4 book ai didi

android - "The following classes could not be found"在布局中使用自定义 Kotlin View

转载 作者:行者123 更新时间:2023-11-29 01:07:22 26 4
gpt4 key购买 nike

我遇到了在 XML 布局文件中包含自定义 Kotlin View 的问题。这是代码:

class CustomView: RelativeLayout {

/**
* Programmatic constructor
*/
constructor(aVariable: Boolean, context: Context): super(context) { ... }

/**
* XML constructor
*/
@JvmOverloads
constructor(context: Context, attributeSet: AttributeSet? = null, defStyle: Int = 0): super(context, attributeSet, defStyle) { ... }

}

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<com.turingtechnologies.materialscrollbar.CustomView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />

</RelativeLayout>

然后布局预览器提示:

“缺课-

找不到以下类:com.turingtechnologies.materialscrollbar.CustomView(修复构建路径、编辑 XML、创建类)”

注意:这是 AS 3.0 beta 3

最佳答案

确认错误 https://issuetracker.google.com/issues/62255811 .修复应该会出现在下一版本的 Android Studio 中。

关于android - "The following classes could not be found"在布局中使用自定义 Kotlin View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45909039/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com