我已经编写了用于从下面显示的一些数组中创建列表的代码!代码运行正常,输出符合预期!
为有相同问题的人更新: 自定义列表视图的好教程
MainActivity.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView listView1 = (ListView) findViewById(R.id.listView1);
String[] items = { "some", "fancy", "items", "to", "show" };
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
R.layout.listitem, items);
listView1.setAdapter(adapter);
}
activity_main.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"
tools:context=".MainActivity" >
<ListView
android:id="@+id/listView1"
android:layout_height="fill_parent"
android:layout_width="fill_parent" />
</RelativeLayout>
列表视图.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:padding="22dp"
android:gravity="center_horizontal"
/>
我想完成什么?
将每个列表项中文本的颜色和字体更改为不同的......并在点击它们时执行一些任务......
也有可能在同一个列表视图中获得另一个列表视图,例如。如果我单击一个列表项,它会再次向我显示一个列表(一种子列表),在同一活动(或屏幕)上具有不同的列表项。并且可以在点击子列表项时执行一些操作。
感谢您提供详细的答案,因为我是 android 开发的新手。谢谢!