Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private BroadcastReceiver mMessageReceiver = new BroadcastReceiver() {
- @Override
- public void onReceive(Context context, Intent intent) {
- String action = intent.getAction();
- if (action.equals(EDIT_FINISH)) {
- onProcessFinished();
- } else if (action.equals(EDIT_CANCEL)) {
- onProcessCancelled();
- Toast.makeText(LoginActivity.this, "on cancel click", Toast.LENGTH_SHORT).show();
- }
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment