作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 android 新手,正在开发一个软件,它将用户联系人显示为带有复选框的 ListView ,如何根据是否选中将复选框数据插入数据库?
在我的数据库类中,我有一个函数用于将名称和数字添加到我的数据库中
createntry(String number,String name) // in my database class
public class ContactCursorAdapterCT extends CursorAdapter {
private ArrayList<Boolean> itemChecked = new ArrayList<Boolean>();
private Context context1;
DataBaseBON dd1= new DataBaseBON(context1);
public ContactCursorAdapterCT(Context context, Cursor c) {
super(context, c);
this.context1 = context;
for (int i = 0; i < this.getCount(); i++) {
itemChecked.add(i, false); // initializes all items value with false
}
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
TextView name = (TextView)view.findViewById(R.id.contactlistTV1);
name.setText(cursor.getString
(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME)));
TextView phone = (TextView)view.findViewById(R.id.contactlistTV2);
phone.setText(cursor.getString
(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)));
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(context);
View v = inflater.inflate(R.layout.lvct, parent, false);
bindView(v, context, cursor);
return v;
}
public View getView(final int pos, View inView, ViewGroup parent) { //getView
if (inView == null) {
LayoutInflater inflater = (LayoutInflater) context1
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inView = inflater.inflate(R.layout.lvct, null);
}
final CheckBox cBox = (CheckBox)inView.findViewById(R.id.checkBox1); // my
// CheckBox
cBox.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
CheckBox cb = (CheckBox) v.findViewById(R.id.checkBox1);
if (cb.isChecked()) {
itemChecked.set(pos, true);
//My problem should be here??
} else if (!cb.isChecked()) {
itemChecked.set(pos, false);
}
}
});
cBox.setChecked(itemChecked.get(pos)); // this will Check or Uncheck the
// CheckBox in ListView
// according to their original
// position and CheckBox never
// loss his State when you
// Scroll the List Items.
return inView;
public class Contacts extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.contacts);
Cursor cursor = getContentResolver().query
(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null,null, null);
startManagingCursor(cursor);
ContactCursorAdapterCT adapter= new ContactCursorAdapterCT
(Contacts.this, cursor);
ListView contactLV = (ListView) findViewById(R.id.listviewblcontactsDB);
contactLV.setAdapter(adapter);
public long creatEntry(String inputnumber , String name) { // for add data
// TODO Auto-generated method stub
ContentValues cv= new ContentValues();
cv.put(KEY_NUMBER, inputnumber);
cv.put(N_NAME, name);
Log.v(inputnumber, "adding to Database");
return ourdatabase.insert(DATABASE_TABLE, null, cv);
}
最佳答案
这是允许使用 SQLite 数据库的简单 DBhelper 示例。它有必要的方法来添加新数据和更新保存的数据。
public class DBHelper extends SQLiteOpenHelper {
private static DBHelper instance;
private static final String DATABASE_NAME = "HangmanBase";
private static final int DATABASE_VERSION = 2;
public static interface ITEM extends BaseColumns {
String TABLE_NAME = "itemTable";
String NAME = "itemName";
String CHECK = "itemCheck";
}
private static final String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS ";
private static final String DROP_TABLE = "DROP TABLE IF EXISTS ";
private static final String UNIQUE = "UNIQUE ON CONFLICT ABORT";
private static final String CREATE_TABLE_ITEM = CREATE_TABLE + ITEM.TABLE_NAME + " (" + ITEM._ID
+ " INTEGER PRIMARY KEY, " + ITEM.NAME + " TEXT " + UNIQUE + ", " + ITEM.CHECK + " INTEGER);";
private DBHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
public static DBHelper getInstance(Context context) {
if (instance == null) {
instance = new DBHelper(context);
}
return instance;
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(CREATE_TABLE_ITEM);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL(DROP_TABLE + ITEM.TABLE_NAME);
onCreate(db);
}
public long addWord(String name, boolean check) {
ContentValues values = new ContentValues();
values.put(ITEM.NAME, name);
values.put(ITEM.CHECK, check);
return getWritableDatabase().insert(ITEM.TABLE_NAME, null, values);
}
public Cursor getAllItemCursor() {
return getReadableDatabase().rawQuery("SELECT * FROM " + ITEM.TABLE_NAME, null);
}
public void changeItemCheck(String itemName, boolean isChecked) {
ContentValues values = new ContentValues();
values.put(ITEM.CHECK, isChecked);
getWritableDatabase().update(ITEM.TABLE_NAME, values, ITEM.NAME + " =? ", new String[] { itemName });
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cursor_list);
itemList = (ListView)findViewById(R.id.item_list);
dbHelper = DBHelper.getInstance(this);
Cursor allItemCursor = dbHelper.getAllItemCursor();
adapter = new ItemCursorAdapter(this, allItemCursor, true);
itemList.setAdapter(adapter);
}
}
public class ItemCursorAdapter extends CursorAdapter {
private final LayoutInflater inflater;
private int itemNameIndex;
private int itemCheckIndex;
private DBHelper dbHelper;
public ItemCursorAdapter(Context context, Cursor cursor, boolean autoRequery) {
super(context, cursor, autoRequery);
inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
itemNameIndex = cursor.getColumnIndex(DBHelper.ITEM.NAME);
itemCheckIndex = cursor.getColumnIndex(DBHelper.ITEM.CHECK);
dbHelper = DBHelper.getInstance(context);
}
public void bindView(View view, Context context, Cursor cursor) {
String name = cursor.getString(itemNameIndex);
boolean checked = cursor.getInt(itemCheckIndex) > 0;
TextView nameTxt = (TextView) view.findViewById(R.id.item_name);
CheckBox checkChk = (CheckBox) view.findViewById(R.id.item_check);
checkChk.setOnCheckedChangeListener(new onItemCheckChangeListener(name));
nameTxt.setText(name);
checkChk.setChecked(checked);
}
@Override
public View newView(Context context, Cursor c, ViewGroup parent) {
View view = inflater.inflate(R.layout.row_item, null);
return view;
}
private class onItemCheckChangeListener implements OnCheckedChangeListener {
private String itemName;
public onItemCheckChangeListener(String itemName) {
this.itemName = itemName;
}
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
dbHelper.changeItemCheck(itemName, isChecked);
}
}
}
关于android - Listview和复选框(如何放入数据库(sqlite)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13662124/
我是一名优秀的程序员,十分优秀!