| | |
| | | |
| | | import android.app.Activity; |
| | | import android.app.Dialog; |
| | | import android.text.TextUtils; |
| | | import android.view.Gravity; |
| | | import android.view.View; |
| | | import android.widget.TextView; |
| | |
| | | setContentView(R.layout.confirm_dialog); |
| | | setCanceledOnTouchOutside(false); |
| | | TextView data = (TextView) this.findViewById(R.id.confirm_data); |
| | | data.setText(mData); |
| | | if (!TextUtils.isEmpty(mData)) { |
| | | data.setText(mData); |
| | | } |
| | | TextView cannel = (TextView) this.findViewById(R.id.confirm_cancel); |
| | | TextView ok = (TextView) this.findViewById(R.id.confirm_ok); |
| | | cannel.setOnClickListener(v -> ConfirmDialog.this.dismiss()); |