Android学习笔记_11_ListView控件使用
一、界面设计:
1、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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" > <TextView
android:layout_width="120dp"
android:layout_height="wrap_content"
android:text="@string/name" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/age" />
</LinearLayout> <ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="20dp" > </ListView> </RelativeLayout>
2、item.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="match_parent"
android:orientation="horizontal" > <TextView
android:id="@+id/name"
android:layout_width="120dp"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/age"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
3、最终测试界面:

每行显示用户名称和年龄。
二、三种方式将数据绑定到ListView控件上:
package com.example.listview; import java.util.ArrayList;
import java.util.HashMap;
import java.util.List; import android.app.Activity;
import android.database.Cursor;
import android.os.Bundle;
import android.support.v4.widget.SimpleCursorAdapter;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast; import com.example.entity.Person;
import com.example.lservice.DBPersonService;
import com.example.lservice.PersonAdapter; public class MainActivity extends Activity { private ListView listView;
private DBPersonService personService; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = (ListView) this.findViewById(R.id.listView);
personService = new DBPersonService(this);
//监听行点击事件
listView.setOnItemClickListener(new OnItemClickListener() {
//parent:指当前被点击条目的listview view:指当前被点击的条目 position:被点击条目的索引
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
ListView lv = (ListView) parent;
/*
* 1、自定义适配器当前条目是Person对象。
* 2、采用SimpleCursorAdapter适配器,返回的是Cursor对象。
* 3、采用SimpleAdapter适配器,返回的是HashMap<String, Object>对象。
*/
Person p = (Person) lv.getItemAtPosition(position);
String info = p.getName() + " " + position + " " + id;
Toast.makeText(getApplicationContext(), info, 1).show(); } });
show3();
} //第一种: 使用SimpleAdapter作为适配器
private void show() {
List<Person> persons = personService.getScrollData(0, 20);
List<HashMap<String, Object>> data = new ArrayList<HashMap<String, Object>>();
for (Person person : persons) {
HashMap<String, Object> map = new HashMap<String, Object>();
map.put("name", person.getName());
map.put("age", person.getAge());
data.add(map);
}
SimpleAdapter adapter = new SimpleAdapter(this, data,
R.layout.item,// 就是一个界面显示文件item.xml
new String[] { "name", "age" },//from: 从结果集中获取数据,将需要显示的数据列名放到该集合
new int[] { R.id.name, R.id.age }// to:将结果集的数据字段对应到listview(item.xml)上
);
listView.setAdapter(adapter);
} //第二种: 使用SimpleCursorAdapter作为适配器
private void show2() {
Cursor cursor = personService.getCursorScrollData(0, 20);
// 使用SimpleCursorAdapter适配器注意两个问题:
// 1、返回的游标对象不能被关闭。
// 2、查询语句字段必须有"_id"这个字段,例如:select id as _id,name,age from person。
@SuppressWarnings("deprecation")
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
R.layout.item, cursor, new String[] { "name", "age" },
new int[] { R.id.name, R.id.age });
listView.setAdapter(adapter);
} //第三种: 自定义适配器PersonAdapter
private void show3() {
List<Person> persons = personService.getScrollData(0, 10);
PersonAdapter adapter = new PersonAdapter(this, persons, R.layout.item);
listView.setAdapter(adapter);
} @Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
} }
自定义适配器类实现:
package com.example.lservice; import java.util.List; import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView; import com.example.entity.Person;
import com.example.listview.R; public class PersonAdapter extends BaseAdapter {
//被绑定的数据
private List<Person> persons;
//绑定条目界面
private int resource;
//布局填充,作用是可以用xml文件生成View对象
private LayoutInflater inflater; public PersonAdapter(Context context,List<Person> persons, int resource) {
this.persons = persons;
this.resource = resource;
inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
} @Override
public int getCount() {
return persons.size();
} @Override
public Object getItem(int position) {
return persons.get(position);
} @Override
public long getItemId(int position) {
return position;
} //会缓存之前的View
@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView nameView =null;
TextView ageView = null;
if (convertView == null) {// 表示是第一页,需要创建该对象
//生成条目界面对象
convertView = inflater.inflate(resource, null);
nameView = (TextView) convertView.findViewById(R.id.name);
ageView = (TextView) convertView.findViewById(R.id.age);
ViewCache cache = new ViewCache();
cache.ageView=ageView;
cache.nameView=nameView;
//Tags can also be used to store data within a view without resorting to another data structure.
convertView.setTag(cache);
}else{
ViewCache cache = (ViewCache) convertView.getTag();
nameView = cache.nameView;
ageView = cache.ageView;
}
// TextView nameView = (TextView) convertView.findViewById(R.id.name);
// TextView ageView = (TextView) convertView.findViewById(R.id.age);
Person person = persons.get(position);
nameView.setText(person.getName());
//setText方法:被设置的值要转换成字符串类型,否则出错
ageView.setText(person.getAge().toString()); return convertView;
}
/**
* 由于每次都要查找View对象,因此就通过setTag将其保存起来。
* @author Administrator
*
*/
private final class ViewCache{
public TextView nameView;
public TextView ageView; }
}
Android学习笔记_11_ListView控件使用的更多相关文章
- [Android学习笔记]组合控件的使用
组合控件的使用 开发过程中,多个UI控件需要协同工作,相互交互之后,才可完成一个完整的业务需求,此时可把这些控件封装成为一个整体,相互之间的交互逻辑封装其中,外部调用可无需关心内部逻辑,只需获取处理后 ...
- android学习笔记七——控件(DatePicker、TimePicker、ProgressBar)
DatePicker.TimePicker ==> DatePicker,用于选择日期 TimePicker,用于选择时间 两者均派生与FrameLayout,两者在FrameLayout的基础 ...
- 十三、Android学习笔记_Andorid控件样式汇总
<!-- 设置activity为透明 --> <style name="translucent"> <item name="android: ...
- Android学习笔记_75_Andorid控件样式汇总
<!-- 设置activity为透明 --> <style name="translucent"> <item name="android: ...
- Android学习笔记_57_ExpandableListView控件应用
1.布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:andr ...
- android菜鸟学习笔记12----Android控件(一) 几个常用的简单控件
主要参考<第一行代码> 1.TextView: 功能与传统的桌面应用开发中的Label控件相似,用于显示文本信息 如: <TextView android:layout_width= ...
- android菜鸟学习笔记14----Android控件(三) ListView的简单使用
MVC模式: MVC的基本原理就是通过Controller连接View和Model.当View中所显示的数据发生变化时,会通知Controller,然后由Controller调用Model中的相关方法 ...
- android菜鸟学习笔记13----Android控件(二) 自定义控件简单示例
有时候,可能觉得系统提供的控件太丑,就会需要自定义控件来实现自己想要的效果. 以下主要参考<第一行代码> 1.自定义一个标题栏: 系统自带的标题栏很丑,且没什么大的作用,所以我们之前会在o ...
- iOS学习笔记——基础控件(上)
本篇简单罗列一下一些常用的UI控件以及它们特有的属性,事件等等.由于是笔记,相比起来不会太详细 UIView 所有UI控件都继承于这个UIView,它所拥有的属性必是所有控件都拥有,这些属性都是控件最 ...
随机推荐
- c#高级写法
Linq的参考资料:https://www.cnblogs.com/liqingwen/p/5801249.html 1.判断str字符串中的逗号个数 string str = "1,2,3 ...
- 【卷土重来之C#学习笔记】(一)c#文章导航目录
[卷土重来之C#学习笔记](一)c#文章导航目录 [卷土重来之C#学习笔记](二)c#编程概述 [卷土重来之C#学习笔记](三)类型.存储.对象 [卷土重来之C#学习笔记](四)类的基本概念 [卷土重 ...
- Java对象的生命周期与作用域的讨论(转)
导读: Java对象的生命周期大致包括三个阶段:对象的创建,对象的使用,对象的清除.因此,对象的生命周期长度可用如下的表达式表示:T = T1 + T2 +T3.其中T1表示对象的创建时间,T2表示对 ...
- Javascript模块化编程(一)模块的写法最佳实践六、输入全局变量 独立性是模块的重要特点,模块内部最好不与程序的其他部分直接交互。 为了在模块内部调用全局变量,必须显式地将其他变量输入模块。
Javascript模块化编程,已经成为一个迫切的需求.理想情况下,开发者只需要实现核心的业务逻辑,其他都可以加载别人已经写好的模块但是,Javascript不是一种模块化编程语言,它不支持类clas ...
- Spring课程 Spring入门篇 5-1 aop基本概念及特点
概念: 1 什么是aop及实现方式 2 aop的基本概念 3 spring中的aop 1 什么是aop及实现方式 1.1 aop,面向切面编程,比如:唐僧取经需要经过81难,多一难少一难都不行.孙悟空 ...
- PAT 1037 Magic Coupon
#include <cstdio> #include <cstdlib> #include <vector> #include <algorithm> ...
- centOs升级
因为军佬放弃制作Centos7的网络重装包,又Centos7的安装引导和6有较大区别所以,选择曲线救国(技术不行,只能这样乱搞)前文:Centos6.9一键重装包https://ppx.ink/net ...
- C#中.Net的值传递和引用传递
/// <summary> /// 电脑类 /// </summary> public class Computer { public string Type { get; s ...
- Format - Numeric
1. 一些常用格式,参考链接:http://msdn.microsoft.com/en-us/library/0c899ak8(v=vs.110).aspx ; Console.WriteLine(v ...
- eclipse spring boot项目部署
选中项目------>右键----->Run As------>Manven bulid-->填写Name:XXX; Goals:clean package -Dmaven.t ...