我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android中ListView使用示例介绍

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android中ListView使用示例介绍

简单ListView实例

数据库读取数据存入ListView

一、具体思路

1、创建Listview控件

2、创建子布局

创建数据库

主方法调用数据库继承类且初始化数据库,写入数据

​ MyDatabaseHelper databaseHelper = new MyDatabaseHelper(this,"Co.db",null,1); ​

SQLiteDatabase db = databaseHelper.getWritableDatabase(); ​

SQLiteDatabase db2 = databaseHelper.getReadableDatabase();

3、写入

ContentValues values = new ContentValues();
values.put("Code","1");
values.put("Name","Admin");
values.put("Post","32");
values.put("Tel","123456789");
db.insert("employee",null,values);
values.clear();
values.put("Code","2");
values.put("Name","Admin1");
values.put("Post","22");
values.put("Tel","23342e");
db.insert("employee",null,values);

4、读取

Cursor cursor = db2.query("Employee",null,null,null,null,null,null);
arrayList = new ArrayList<>();
if (cursor.moveToFirst()) {
    do {
        name = cursor.getString(cursor.getColumnIndex("Name"));
        code = cursor.getString(cursor.getColumnIndex("Code"));
        post = cursor.getString(cursor.getColumnIndex("Post"));
        tel = cursor.getString(cursor.getColumnIndex("Tel"));
        System.out.println("查找到的值:"+ name +"---"+ code +"---"+ post +"---"+ tel);
        Employee employee=new Employee(name, tel, post, code);
        arrayList.add(employee);

    }while (cursor.moveToNext());
}

5、创建对象,构造器,GETSET方法

6、创建Adapter

二、具体实施

1、适配器

lv.setAdapter(new BaseAdapter() {
    @Override
    public int getCount() {
        return arrayList.size();
    }

    @Override
    public Object getItem(int position) {
        return null;
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View view;
        if (convertView==null){
            view=View.inflate(getBaseContext(),R.layout.listitem,null);
        }else{
            view=convertView;
        }
        Employee ee=(Employee) arrayList.get(position);
        TextView eename=view.findViewById(R.id.name);
        TextView eedianhua=view.findViewById(R.id.dianhua);
        TextView eezhiwei=view.findViewById(R.id.zhiwei);
        TextView eekahao=view.findViewById(R.id.kahao);
        eename.setText(ee.getName());
        eedianhua.setText(ee.getTel());
        eezhiwei.setText(ee.getPost());
        eekahao.setText(ee.getCode());
        return view;
    }
});

2、数据库

public class MyDatabaseHelper extends SQLiteOpenHelper {
    public static final String CREATE_Employees = "create table employee ("
            + "Code text, "
            + "Name text unique, "
            + "Post text, "
            + "Tel text)";

    private Context mContext;
    public MyDatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory
            factory, int version) {
        super(context, name, factory, version);
        mContext = context;
    }
    @Override
    public void onCreate(SQLiteDatabase db) {
        db.execSQL(CREATE_Employees);
        Toast.makeText(mContext, "Create succeeded", Toast.LENGTH_SHORT).show();
    }
    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    }
}

3、对象

package com.example.a4_7_1_lv;

public class Employee {
    private String name;
    private String tel;
    private String post;
    private String code;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getTel() {
        return tel;
    }

    public void setTel(String tel) {
        this.tel = tel;
    }

    public String getPost() {
        return post;
    }

    public void setPost(String post) {
        this.post = post;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public Employee(String name, String tel, String post, String code) {
        this.name = name;
        this.tel = tel;
        this.post = post;
        this.code = code;
    }

    public Employee() {
    }
}

4、等等等等

三、案例分享

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</RelativeLayout>

listitem.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="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="姓名"
            android:textSize="30dp"/>
        <TextView
            android:layout_marginLeft="30dp"
            android:id="@+id/name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textSize="30dp"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="电话"
                android:layout_marginLeft="100dp"
                android:textSize="30dp"/>
            <TextView
                android:layout_marginLeft="30dp"
                android:id="@+id/dianhua"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text=""
                android:textSize="30dp"/>
</LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="职位"
            android:textSize="30dp"/>
        <TextView
            android:layout_marginLeft="30dp"
            android:id="@+id/zhiwei"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textSize="30dp"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="卡号"
            android:layout_marginLeft="100dp"
            android:textSize="30dp"/>
        <TextView
            android:layout_marginLeft="30dp"
            android:id="@+id/kahao"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:textSize="30dp"/>
    </LinearLayout>
</LinearLayout>

MyDatabaseHelper.java

package com.example.a4_7_1_lv;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.widget.Toast;

public class MyDatabaseHelper extends SQLiteOpenHelper {
    public static final String CREATE_Employees = "create table employee ("
            + "Code text, "
            + "Name text unique, "
            + "Post text, "
            + "Tel text)";

    private Context mContext;
    public MyDatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory
            factory, int version) {
        super(context, name, factory, version);
        mContext = context;
    }
    @Override
    public void onCreate(SQLiteDatabase db) {
        db.execSQL(CREATE_Employees);
        Toast.makeText(mContext, "Create succeeded", Toast.LENGTH_SHORT).show();
    }
    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    }
}

MainActivity.java

package com.example.a4_7_1_lv;

import androidx.appcompat.app.AppCompatActivity;

import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ListView;
import android.widget.TextView;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {

    private ListView lv;
    private MyDatabaseHelper databaseHelper;
    private SQLiteDatabase db;
    private SQLiteDatabase db2;
    private ArrayList arrayList;
    private String name;
    private String code;
    private String post;
    private String tel;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        lv = findViewById(R.id.list);
    }

    @Override
    protected void onStart() {
        super.onStart();
        MyDatabaseHelper databaseHelper = new MyDatabaseHelper(this,"Co.db",null,1);
        db = databaseHelper.getWritableDatabase();
        db2 = databaseHelper.getReadableDatabase();
        DBInsert();
        Cursor cursor = db2.query("Employee",null,null,null,null,null,null);
        arrayList = new ArrayList<>();
        if (cursor.moveToFirst()) {
            do {
                name = cursor.getString(cursor.getColumnIndex("Name"));
                code = cursor.getString(cursor.getColumnIndex("Code"));
                post = cursor.getString(cursor.getColumnIndex("Post"));
                tel = cursor.getString(cursor.getColumnIndex("Tel"));
                System.out.println("查找到的值:"+ name +"---"+ code +"---"+ post +"---"+ tel);
                Employee employee=new Employee(name, tel, post, code);
                arrayList.add(employee);

            }while (cursor.moveToNext());
        }
        lv.setAdapter(new BaseAdapter() {
            @Override
            public int getCount() {
                return arrayList.size();
            }

            @Override
            public Object getItem(int position) {
                return null;
            }

            @Override
            public long getItemId(int position) {
                return 0;
            }

            @Override
            public View getView(int position, View convertView, ViewGroup parent) {
                View view;
                if (convertView==null){
                    view=View.inflate(getBaseContext(),R.layout.listitem,null);
                }else{
                    view=convertView;
                }
                Employee ee=(Employee) arrayList.get(position);
                TextView eename=view.findViewById(R.id.name);
                TextView eedianhua=view.findViewById(R.id.dianhua);
                TextView eezhiwei=view.findViewById(R.id.zhiwei);
                TextView eekahao=view.findViewById(R.id.kahao);
                eename.setText(ee.getName());
                eedianhua.setText(ee.getTel());
                eezhiwei.setText(ee.getPost());
                eekahao.setText(ee.getCode());
                return view;
            }
        });
    }

    private void DBInsert() {
        ContentValues values = new ContentValues();
        values.put("Code","1");
        values.put("Name","Admin");
        values.put("Post","32");
        values.put("Tel","123456789");
        db.insert("employee",null,values);
        values.clear();
        values.put("Code","2");
        values.put("Name","Admin1");
        values.put("Post","22");
        values.put("Tel","23342e");
        db.insert("employee",null,values);
        values.clear();
        values.put("Code","4");
        values.put("Name","Admin13");
        values.put("Post","2sda2");
        values.put("Tel","233asd42e");
        db.insert("employee",null,values);
        values.clear();
        values.put("Code","Code");
        values.put("Name","Name");
        values.put("Post","Post");
        values.put("Tel","Tel");
        db.insert("employee",null,values);
    }
}

Employee.java

package com.example.a4_7_1_lv;

import androidx.appcompat.app.AppCompatActivity;

import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ListView;
import android.widget.TextView;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {

    private ListView lv;
    private MyDatabaseHelper databaseHelper;
    private SQLiteDatabase db;
    private SQLiteDatabase db2;
    private ArrayList arrayList;
    private String name;
    private String code;
    private String post;
    private String tel;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        lv = findViewById(R.id.list);
    }

    @Override
    protected void onStart() {
        super.onStart();
        MyDatabaseHelper databaseHelper = new MyDatabaseHelper(this,"Co.db",null,1);
        db = databaseHelper.getWritableDatabase();
        db2 = databaseHelper.getReadableDatabase();
        DBInsert();
        Cursor cursor = db2.query("Employee",null,null,null,null,null,null);
        arrayList = new ArrayList<>();
        if (cursor.moveToFirst()) {
            do {
                name = cursor.getString(cursor.getColumnIndex("Name"));
                code = cursor.getString(cursor.getColumnIndex("Code"));
                post = cursor.getString(cursor.getColumnIndex("Post"));
                tel = cursor.getString(cursor.getColumnIndex("Tel"));
                System.out.println("查找到的值:"+ name +"---"+ code +"---"+ post +"---"+ tel);
                Employee employee=new Employee(name, tel, post, code);
                arrayList.add(employee);

            }while (cursor.moveToNext());
        }
        lv.setAdapter(new BaseAdapter() {
            @Override
            public int getCount() {
                return arrayList.size();
            }

            @Override
            public Object getItem(int position) {
                return null;
            }

            @Override
            public long getItemId(int position) {
                return 0;
            }

            @Override
            public View getView(int position, View convertView, ViewGroup parent) {
                View view;
                if (convertView==null){
                    view=View.inflate(getBaseContext(),R.layout.listitem,null);
                }else{
                    view=convertView;
                }
                Employee ee=(Employee) arrayList.get(position);
                TextView eename=view.findViewById(R.id.name);
                TextView eedianhua=view.findViewById(R.id.dianhua);
                TextView eezhiwei=view.findViewById(R.id.zhiwei);
                TextView eekahao=view.findViewById(R.id.kahao);
                eename.setText(ee.getName());
                eedianhua.setText(ee.getTel());
                eezhiwei.setText(ee.getPost());
                eekahao.setText(ee.getCode());
                return view;
            }
        });
    }

    private void DBInsert() {
        ContentValues values = new ContentValues();
        values.put("Code","1");
        values.put("Name","Admin");
        values.put("Post","32");
        values.put("Tel","123456789");
        db.insert("employee",null,values);
        values.clear();
        values.put("Code","2");
        values.put("Name","Admin1");
        values.put("Post","22");
        values.put("Tel","23342e");
        db.insert("employee",null,values);
        values.clear();
        values.put("Code","4");
        values.put("Name","Admin13");
        values.put("Post","2sda2");
        values.put("Tel","233asd42e");
        db.insert("employee",null,values);
        values.clear();
        values.put("Code","Code");
        values.put("Name","Name");
        values.put("Post","Post");
        values.put("Tel","Tel");
        db.insert("employee",null,values);
    }
}

到此这篇关于Android中ListView使用示例介绍的文章就介绍到这了,更多相关Android ListView使用内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android中ListView使用示例介绍

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

android开发中ListView与Adapter使用要点介绍

1. Adapter.getView() public View getView(int position, View convertView , ViewGroup parent){...} 这个方法就是用来获得指定位置要显示的View。
2022-06-06

python中urlparse模块介绍与使用示例

简介 urlparse模块主要是用于解析url中的参数 对url按照一定格式进行 拆分或拼接。urlparse库用于把url解析为各个组件,支持file,ftp,http,https, imap, mailto, mms, news, n
2022-06-04

Android Rsa数据加解密的介绍与使用示例

Rsa加密 RSA是目前最有影响力的公钥加密算法,RSA也是第一个既能用于数据加密也能用于数字签名的算法。该算法基于一个十分简单的数论事实:将两个大素数相乘十分容易,但那时想要对其乘积进行因式分解却极其困 难,因此可以将乘积公开作为加密密钥
2022-06-06

Android传感器使用实例介绍

这篇文章主要为大家详细介绍了Android传感器的简单使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
2022-12-16

Android通过LIstView显示文件列表的两种方法介绍

在Android中通过ListView显示SD卡中的文件列表一共有两种方法,一是:通过继承ListActivity显示;二是:利用BaseAdapter显示。BaseAdapter是一个公共基类适配器,用于对ListView和Spinner
2022-06-06

Android View Binding使用介绍

前言 Android Studio稳定版发布了3.6版本,带来了一些新变化:首先外观,启动页变了,logo改了,更显现代化;增加Multi Preview功能,能同时预览多个尺寸屏幕的显示效果;模拟器支持多屏;也终于支持全新的视图绑定组件V
2022-06-06

Android Fragment的回退栈示例详细介绍

Android Fragment的回退栈 点开之后按一次回退键只返回一次MainActivity 类public class MainActivity extends AppCompatActivity {ListView lv;List
2022-06-06

Android中ListView怎么使用

这篇文章主要讲解了“Android中ListView怎么使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android中ListView怎么使用”吧!一、具体思路1、创建Listview控
2023-06-22

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录