如何插入一个字符串值转换成对话消息?(How to insert a string value in

2019-09-22 04:47发布

我有一个EDITTEXT和一个按钮,如果我输入“ABC”,然后按下按钮,它就会储存在我的数据库中的值,并会打开一个dielog框说它得到了成功插入但在对话框中我也想展示一下了插入,所以继承人的代码:

EditText texto = (EditText) findViewById(R.id.etAdd);
final String resultado = texto.getText().toString();

Button add = (Button) findViewById(R.id.bAdd);
add.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {
        // TODO Auto-generated method stub
        try {
            //Abre ou Cria uma database com nome de: "dbtest.db"
            db = openOrCreateDatabase("dbtest.db", Context.MODE_PRIVATE, null);

            try {
                db.insert("usuarioorigem", resultado, null);
                ShowMessage("Mensagens","Inserido" +resultado+ "com sucesso!");
            } finally {

            }
        } finally {

        }
    }
});

Answer 1:

关键是要检查的成功插入操作

   EditText texto = (EditText) findViewById(R.id.etAdd);

            Button add = (Button) findViewById(R.id.bAdd);
            add.setOnClickListener(new OnClickListener() {

                public void onClick(View v) {
                    // TODO Auto-generated method stub
                    try{
                        //Abre ou Cria uma database com nome de: "dbtest.db"
                        db = openOrCreateDatabase("dbtest.db", Context.MODE_PRIVATE, null);
                        String resultado = texto.getText().toString();

                        try{
                            long result = db.insert("usuarioorigem", resultado, null);
                            if(result == -1){
                               ShowMessage("Error in Insert"); //sorry for english here, may be u can use inserido
                            }
                            else{
                               ShowMessage("Mensagens Inserido" +resultado+ "com sucesso!");
                            }
                        }finally{

                        }
                }finally{

                }
                }
            });


    private void ShowMessage(String msg){
        Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
    }


Answer 2:

你ShowMessage函数,可能是这样的:

private void ShowMessage(String msg){
    Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
}

在这里看到更多的信息祝酒词 。



文章来源: How to insert a string value into a dialog message?