gpt4 book ai didi

java - 自定义布局未在 mainActivity 类中检测到?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:28:39 24 4
gpt4 key购买 nike

我是 android 的初学者。

我正在使用 Android Studio 1.0。我正在尝试为 listView 制作一个自定义布局。我在名为 row_layout 的 res/layout 中创建了自定义布局文件。用于布局的 xml 是这样的:

<LinearLayout 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"
tools:context=".MainActivity"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/cl_textView"
android:textSize="30sp"
android:textStyle="bold"
android:padding="15dp"/>
</LinearLayout>

在 MainActivity 类中实现自定义布局的代码是:

  ListAdapter theAdapter = new ArrayAdapter<String>(this, android.R.layout.row_layout,toDoList);

但是 Activity 类没有检测到这个自定义布局,并在构建时显示以下错误。

enter image description here

最佳答案

您必须将 android.R. 替换为 R. 因为 R.* 提供了您的应用程序资源,android .R.* 提供随 Android SDK 一起提供的资源。( R.* 实际上是 your.package.R.* 的快捷方式)

希望对您有所帮助。

关于java - 自定义布局未在 mainActivity 类中检测到?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27665896/

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