Home
last modified time | relevance | path

Searched refs:intentAction (Results 1 – 4 of 4) sorted by relevance

/development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/service/
DMessagingService.java44 String intentAction = intent.getAction(); in onHandleIntent() local
45 if (ACTION_MY_RECEIVE_SMS.equals(intentAction)) { in onHandleIntent()
50 } else if (ACTION_MY_RECEIVE_MMS.equals(intentAction)) { in onHandleIntent()
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DBluetoothLeService.java74 String intentAction;
76 intentAction = ACTION_GATT_CONNECTED;
78 broadcastUpdate(intentAction);
85 intentAction = ACTION_GATT_DISCONNECTED;
88 broadcastUpdate(intentAction);
/development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/
DMainActivity.java91 String intentAction = getIntent() == null ? null : getIntent().getAction(); in onCreate() local
92 if (!TextUtils.isEmpty(intentAction) && (Intent.ACTION_SENDTO.equals(intentAction) in onCreate()
93 || Intent.ACTION_SEND.equals(intentAction))) { in onCreate()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DIntentFragment.java48 mActionTextView = layout.findViewById(R.id.intentAction); in onCreateView()