SimpleCursorAdapter 在参数中找不到我的自定义列表视图 - Android
SimpleCursorAdapter can't find my custom view of list in arguments - Android
我想在我的数据库中创建项目的自定义列表视图。不幸的是,当我尝试声明 SimpleCursorAdapter
时,它找不到我的自定义列表。
当我声明 SimpleCursorAdapter
时有片段:
cursor = db.query("SERIAL",new String[]{"_id","NAZWA","SERWIS"},null,null,null,null,null);
if(cursor.moveToFirst())
{
SimpleCursorAdapter listAdapter = new SimpleCursorAdapter(this, android.R.layout.my_custom_list,
cursor,
new String[]{"NAZWA","SERWIS"},
new int[]{android.R.id.text1,android.R.id.text2},
0);
listViewSeriale.setAdapter(listAdapter); // List listViewSeriale = (ListView) findViewById(R.id.listViewSeriale);
}
它适用于 simple_list_item_2
但我的数据库中的项目多于两个...
content_activity_baza_danych.xml <-- id listViewSeriale
所在的文件:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listViewSeriale" />
my_custom_list.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:textAlignment="gravity"
>
<TextView
android:id="@+id/textNazwa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
<TextView
android:id="@+id/textSerwis"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>
错误:
error: cannot find symbol
SimpleCursorAdapter listAdapter = new SimpleCursorAdapter(this, android.R.layout.my_custom_list,
^
symbol: variable my_custom_list
我认为解决方案很简单,但我是 android 的新手,很多东西都不懂。
它应该是 R.layout.my_custom_list
而不是 android.R.layout.my_custom_list
,就像你说的 android 一样。** 你引用的是 android 包而不是你的包。
我想在我的数据库中创建项目的自定义列表视图。不幸的是,当我尝试声明 SimpleCursorAdapter
时,它找不到我的自定义列表。
当我声明 SimpleCursorAdapter
时有片段:
cursor = db.query("SERIAL",new String[]{"_id","NAZWA","SERWIS"},null,null,null,null,null);
if(cursor.moveToFirst())
{
SimpleCursorAdapter listAdapter = new SimpleCursorAdapter(this, android.R.layout.my_custom_list,
cursor,
new String[]{"NAZWA","SERWIS"},
new int[]{android.R.id.text1,android.R.id.text2},
0);
listViewSeriale.setAdapter(listAdapter); // List listViewSeriale = (ListView) findViewById(R.id.listViewSeriale);
}
它适用于 simple_list_item_2
但我的数据库中的项目多于两个...
content_activity_baza_danych.xml <-- id listViewSeriale
所在的文件:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listViewSeriale" />
my_custom_list.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:textAlignment="gravity"
>
<TextView
android:id="@+id/textNazwa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
<TextView
android:id="@+id/textSerwis"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>
错误:
error: cannot find symbol
SimpleCursorAdapter listAdapter = new SimpleCursorAdapter(this, android.R.layout.my_custom_list,
^
symbol: variable my_custom_list
我认为解决方案很简单,但我是 android 的新手,很多东西都不懂。
它应该是 R.layout.my_custom_list
而不是 android.R.layout.my_custom_list
,就像你说的 android 一样。** 你引用的是 android 包而不是你的包。