在Android studio中使用ListView控件完成数据列表的显示。要求:详细、具体地给出所有项目文件的源代码
时间: 2023-04-11 18:00:47 浏览: 163
以下是示例代码:
activity_main.xml:
```
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
```
list_item.xml:
```
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:textSize="16sp" />
```
MainActivity.java:
```
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import androidx.appcompat.app.AppCompatActivity;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
private ListView listView;
private ArrayList<String> dataList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = findViewById(R.id.listView);
// 初始化数据
dataList = new ArrayList<>();
for (int i = 0; i < 20; i++) {
dataList.add("Item " + i);
}
// 创建适配器
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, R.layout.list_item, dataList);
// 设置适配器
listView.setAdapter(adapter);
}
}
```
以上代码实现了在 Android Studio 中使用 ListView 控件完成数据列表的显示。其中,activity_main.xml 是主布局文件,list_item.xml 是列表项布局文件,MainActivity.java 是主活动文件。在 MainActivity.java 中,我们首先找到 ListView 控件,然后初始化数据,创建适配器,最后将适配器设置给 ListView 控件即可。
阅读全文