0

我正在创建添加联系人 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();


            }
        }
    });
4

0 回答 0