SQLite数据库浏览器不显示表

时间:2019-03-30 19:13:10

标签: android android-sqlite sqliteopenhelper sqlite-browser

我正在创建添加联系人android应用程序。我正在使用SQLite数据库。该应用程序运行正常,没有任何错误。但是用于SQLite的数据库浏览器不会显示在我的数据库中创建的表。

我已经删除了数据库,并且还增加了数据库版本。

add.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            String name=et_name.getText().toString();
            String number=et_number.getText().toString();


            if(name.trim().length()>0 && number.trim().length()>0){
                Contact contact=new Contact(name,number);
                dbHandler.addContact(contact);
                startActivity(new Intent(context,MainActivity.class));
            }
            else {
                AlertDialog.Builder builder=new AlertDialog.Builder(context);
                builder.setMessage("please fill all the fields").setNegativeButton("ok",null).show();


            }
        }
    });

0 个答案:

没有答案