高斋晓开卷,独共圣人语。这篇文章主要讲述《APP》团队冲刺第二阶段 六相关的知识,希望能为你提供帮助。
今天继续进行闪退bug以及数据插入和修改数据时的出现的bug,某些手机型号运行次软件的时候,两三分钟后总是会闪退,不管有没有进行操作,或者不管做任何操作。我们考虑可能数据库的问题,有可能是数据库类型与实际输入的类型有些出入,或是其他的问题,所以我们打算重新编写这一部分的代码。
【《APP》团队冲刺第二阶段 六】
package com.example.datebasetest; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; import android.database.sqlite.SQLiteOpenHelper; import android.widget.Toast; /** * Created by Administrator on 2016/3/4. */ public class DatabaseHelper extends SQLiteOpenHelper{public static final String CREATE_BOOK = "create table Book(id integer primary key autoincrement, author text,price real,pages integer,name text)"; public static final String CREATE_CATEGORY="create table Category(id integer primary key autoincrement,category_name text,category_code integer)"; private Context mContext; public DatabaseHelper(Context context, String name, CursorFactory factory, int version) { super(context, name, factory, version); mContext = context; }@Override public void onCreate(SQLiteDatabase db) { db.execSQL(CREATE_BOOK); db.execSQL(CREATE_CATEGORY); Toast.makeText(mContext,"创建成功",Toast.LENGTH_SHORT).show(); }@Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { db.execSQL("drop table if exists Book"); db.execSQL("drop table if exists Category"); onCreate(db); }}package com.example.datebasetest; import android.content.ContentValues; import android.database.sqlite.SQLiteDatabase; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity {private Button btn; private DatabaseHelper dbHelper; private Button addButton; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn = (Button)findViewById(R.id.create_database); dbHelper = new DatabaseHelper(this,"BookStore.db",null,2); addButton = (Button)findViewById(R.id.add_data); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { dbHelper.getWritableDatabase(); } }); addButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { SQLiteDatabase db = dbHelper.getWritableDatabase(); ContentValues values = new ContentValues(); values.put("name","wz"); values.put("author","xx"); values.put("price",1.0); values.put("pages",156); db.insert("Book",null,values); values.clear(); values.put("name","wz2"); values.put("author","xx2"); values.put("price",2.0); values.put("pages",122); db.insert("Book",null,values); } }); } }
< ?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"> < Button android:id="@+id/create_database" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="创建数据库" android:layout_marginTop="10dp" /> < Button android:id="@+id/add_data" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="添加数据" android:layout_marginTop="10dp" /> < /LinearLayout>
推荐阅读
- append对len和cap的影响
- win8/win10系统安装程序软件出现不兼容现象怎样办
- win8系统怎样打开或关闭系统保护技巧|win8打开或禁用系统保护技巧的办法
- win8.1如何增加c盘空间|win8.1扩展c盘空间的办法
- win8系统怎样将应用程序固定到任务栏
- 升级Win 8系统后播放器出现绿屏的处理办法
- Win8系统电脑安装iTunes出现出错2503如何处理
- Win10设备销售颓势能否突破Win8/Win 8系统
- Win 8系统出现蓝屏出错代码0x0000007F怎样办