gpt4 book ai didi

ListView中的Android自定义列表项

转载 作者:行者123 更新时间:2023-11-29 20:43:00 27 4
gpt4 key购买 nike

我试图制作一个简单的自定义 ListView 列表项来帮助我理解它是如何工作的,但它不起作用。

当我在 MainActivity.java 中使用注释行时,一切正常(它使用内置布局)。但是当我尝试自己的布局 row_layout 而不是 simple_list_item_1 时,我在启动程序时遇到了 ANR。

主 Activity .java

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);


String[] colors = {"blue", "red", "yellow", "green", "purple", "orange"};

//ListAdapter listAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, colors);
ListAdapter listAdapter = new ArrayAdapter<String>(this, R.layout.row_layout, colors);

ListView listView = (ListView)findViewById(R.id.theListView);

listView.setAdapter(listAdapter);

listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String auswahl = "Auswahl:" + String.valueOf(parent.getItemAtPosition(position));

Toast.makeText(MainActivity.this, auswahl, Toast.LENGTH_LONG).show();
}
});
}

activity_main.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"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/theListView"></ListView></LinearLayout>

行布局.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"
android:orientation="horizontal"
tools:context=".MainActivity">

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

最佳答案

调用适配器时,您需要在自定义行中提供 TextView 的 ID。

ListAdapter listAdapter = new ArrayAdapter<String>(this, R.layout.row_layout, R.id.textView1, colors);

关于ListView中的Android自定义列表项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30752287/

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