应用程序崩溃但仍在填充实时数据库时

时间:2019-05-16 05:38:21

标签: android firebase-realtime-database

同时填充2个孩子时,我的应用程序崩溃了,但数据仍然进入了数据库。第一个孩子名为约会,第二个孩子名为AppDate。

submit = (Button) findViewById(R.id.submitbutton);
submit.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {

        Appointment apps = new Appointment(tname.getText().toString(), data1, tdate.getText().toString(), ttime.getText().toString(), taptype.getText().toString(), apstat.getText().toString(),dateid);

        table_user.child(data1).setValue(apps);

        table_user2.child(dateid).setValue(dateid);
        submission success", Toast.LENGTH_SHORT).show();

    }
});

see this and this

0 个答案:

没有答案