首页 > 数据库删除,存储

数据库删除,存储

布局主要分两个

其中主布局是




对于ListView的布局定义则是




自定义的adapter

package com.example.kimdemon.sqllite;import android.content.Context;
import android.database.Cursor;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CursorAdapter;
import android.widget.TextView;public class dapter extends CursorAdapter{public dapter(Context context,Cursor cursor){super(context,cursor,0);
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup viewGroup) {return LayoutInflater.from(context).inflate(R.layout.list,viewGroup,false);
}@Override
public void bindView(View view, Context context, Cursor cursor) {TextView name = (TextView) view.findViewById(R.id.yf_name);name.setText(cursor.getString(cursor.getColumnIndex("name")));}
}

数据库的创建和打开

package com.example.kimdemon.sqllite;import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
public class Create extends SQLiteOpenHelper {
private String sql="create table student(_id integer primary key autoincrement,"
+"name text not null ,classmate text not null,age integer)";public Create(Context context){super(context,"ManagerInfo",null,1);
}@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {}public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {sqLiteDatabase.execSQL("drop table if exists person");onCreate(sqLiteDatabase);
}
}

数据库的操作

package com.example.kimdemon.sqllite;import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;public class Manager {
private Create create;
private SQLiteDatabase sqLiteDatabase;public Manager(Context context){
create = new Create(context);}public void insert(String name){sqLiteDatabase = create.getWritableDatabase();String sql = "insert into person(name) values('"+name+"')";sqLiteDatabase.execSQL(sql);}public Cursor selectAll(){sqLiteDatabase = create.getReadableDatabase();Cursor cursor = sqLiteDatabase.query("manager",null,null,null,null,null,null);return cursor;}public void delete(String id){sqLiteDatabase = create.getWritableDatabase();String sql = "delete person where _id="+String.valueOf(id);sqLiteDatabase.execSQL(sql);
}}

主Java代码则是

package com.example.kimdemon.sqllite;import android.database.Cursor;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
import android.widget.ListView;public class MainActivity extends AppCompatActivity {
private EditText yf_input;
private ListView yf_listview;
private dapter dapter;
private Create create;
private Manager manager;
private Cursor cursor;@Override
protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);yf_input = (EditText) findViewById(R.id.yf_input);
yf_listview = (ListView) findViewById(R.id.yf_listview);manager = new Manager(this);cursor = manager.selectAll();if (cursor != null ){dapter = new dapter(MainActivity.this,cursor);yf_listview.setAdapter(dapter);}
}public void onClick(View view){switch (view.getId()){case R.id.yf_add:String name = yf_input.getText().toString();manager.insert(name);cursor = manager.selectAll();if (cursor != null){dapter = new dapter(this,cursor);yf_listview.setAdapter(dapter);}break;case R.id.yf_delete:
if (cursor != null){if (cursor.moveToFirst()){manager.delete(cursor.getString(cursor.getColumnIndex("_id")));cursor = manager.selectAll();}
}dapter = new dapter(this,cursor);yf_listview.setAdapter(dapter);break;}
}
}

转载于:https://www.cnblogs.com/KimDemon/p/6864246.html

更多相关:

  • android:id 为控件指定相应的IDandroid:text 指定控件的文本,置尽量使用strings.xmlandroid:grivity 指定控件的基本位置 ,比如举重,居右,android:padding 指定控件的内边距,控件当中的内容android:singleLine 如果设置为真的话,则将控件的内容在同一行当中显示...

  • 大家平时见到的最多的可能就是Frame动画了,Android中当然也少不了它。它的使用更加简单,只需要创建一个 AnimationDrawabledF对象来表示Frame动画,然后通过addFrame 方法把每一帧要显示的内容添加进去,并设置播放间隔时间,本例子中间隔时间为5S, 最后通过start 方法就可。 以播放这个动画了,...

  • 作业要求: 作一个显示框里面分成三行 一二行占这个框的1/2 第三行独占1/2 第三行里面分成两列第一列占25%,第二列占75%。 屏幕显示效果 实现步骤:  

  • 一:Service简介 Android开发中,当需要创建在后台运行的程序的时候,就要使用到Service。 1:Service(服务)是一个没有用户界面的在后台运行执行耗时操作的应用组件。其他应用组件能够启动Service,并且当用户切换到另外的应用场景,Service将持续在后台运行。另外,一个组件能够绑定到一个service与之交...

  • 有一天,我写了一个自信满满的自定义组件myComponent,在多个页面import使用了,结果控制台给我来这个 我特么裤子都脱了,你给我来这个提示是几个意思 仔细一看 The Component 'MyComponentComponent' is declared by more than one NgModule...

  • 创建一个带路由的项目,依次执行下面每行代码 ng n RouingApp --routingcd RouingAppng g c components/firstng g c components/secondng g m components/second --routing    代码拷贝: import {NgModul...

  •       cnpm install vue-quill-editor cnpm install quill-image-drop-module cnpm install quill-image-resize-module 执行上面的命令安装,然后在main.js下面加入 //引入quill-editor编辑器import...

  • 首先要理解Vue项目加载顺序: index.html → main.js → App.vue → nav.json→ routes.js → page1.vue index.html建议加入样式

  • 简单记录平时画图用到的python 便捷小脚本 1. 从单个文件输入 绘制坐标系图 #!/usr/bin/python # coding: utf-8 import matplotlib.pyplot as plt import numpy as np import matplotlib as mpl import sysf...

  • 在4gl中CURSOR可以说是每一个程序中都会有的,而CURSOR又分为三种SCROLLING CURSOR、Non-SCROLLING CURSOR、LOCKING CURSOR。 Non-SCROLLING CURSOR的聲明有兩種,一種是先定義好sql語句到一個變量里: DECLARE    cursor名  CURSOR  F...

  • 我们使用SQL语句处理数据时,可能会碰到一些需要循环遍历某个表并对其进行相应的操作(添加、修改、删除),这时我们就需要用到咱们在编程中常常用的for或foreach,但是在SQL中写循环往往显得那么吃力,翻遍网上的资料,找不到几个正确的并能执行的循环处理数据的方法,在这里,我来给大家分享一下! 要SQL中写类似for循环,我这里使用的...

  • cursor:hand 与 cursor:pointer 的效果是一样的,都像光标指向链接一样,光标变成手行。 cursor:hand :IE完全支持。但是在firefox是不支持的,没有效果。 cursor:pointer :是CSS2.0的标准。所以firefox是支持的,但是IE5.0既之前版本不支持。IE6开始支持。 结论:还...