得意犹堪夸世俗,诏黄新湿字如鸦。这篇文章主要讲述Android------------------ListVIew学习相关的知识,希望能为你提供帮助。
一、ListActivity :
如何你的Activity仅涉及到一个列表(ListVIew),那么你就该考虑使用ListActivity这个类
注意事项:1.ListActivity 里面默认包含显示的ListView视图
2.想自定义布局且显示出来,必须把ID设置为 android:id = “@id/list”
否则系统会报出这样的错误: Caused by: java.lang.RuntimeException: Your content must have a ListView whose id attribute is ‘android.R.id.list‘
public class TextActivity extends ListActivity {
private String[] objs = {"北京", "上海", "天津"};
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ArrayAdapter< String> adapter = new ArrayAdapter< String> (TextActivity.this,
R.layout.listview1, R.id.line3, objs);
setListAdapter(adapter);
}
}
activity_main.xml文件内容显示
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
< ListView
android:id="@+id/line1"----------------> 致命的错误,它的ID必须为list才能编译过
android:layout_width="wrap_content"
android:layout_height="wrap_content">
< /ListView>
< /LinearLayout>
【Android------------------ListVIew学习】
推荐阅读
- APP快速开发(PC移动端多项目整合,learun让开发更畅快)
- Tableau与文本文件的数据连接图解
- Tableau与数据源的数据连接
- 数据窗口,Tableau中的数据类型
- Tableau表格导航图解
- Tableau数据术语
- Tableau有效地使用工作区控件
- Tableau下载和安装详细步骤图解
- 使用AndroidStudio运行eclipse开发的app项目