📜  android sqlite 初学者教程 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:10.234000             🧑  作者: Mango

代码示例2
public void addUser(View view)
    {
        String t1 = Name.getText().toString();
        String t2 = Pass.getText().toString();
        if(t1.isEmpty() || t2.isEmpty())
        {
            Message.message(getApplicationContext(),"Enter Both Name and Password");
        }