Searched refs:intentAction (Results 1 – 4 of 4) sorted by relevance
44 String intentAction = intent.getAction(); in onHandleIntent() local45 if (ACTION_MY_RECEIVE_SMS.equals(intentAction)) { in onHandleIntent()50 } else if (ACTION_MY_RECEIVE_MMS.equals(intentAction)) { in onHandleIntent()
74 String intentAction;76 intentAction = ACTION_GATT_CONNECTED;78 broadcastUpdate(intentAction);85 intentAction = ACTION_GATT_DISCONNECTED;88 broadcastUpdate(intentAction);
91 String intentAction = getIntent() == null ? null : getIntent().getAction(); in onCreate() local92 if (!TextUtils.isEmpty(intentAction) && (Intent.ACTION_SENDTO.equals(intentAction) in onCreate()93 || Intent.ACTION_SEND.equals(intentAction))) { in onCreate()
48 mActionTextView = layout.findViewById(R.id.intentAction); in onCreateView()