OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:intentAction
(Results
1 - 6
of
6
) sorted by null
/development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/service/
MessagingService.java
44
String
intentAction
= intent.getAction();
45
if (ACTION_MY_RECEIVE_SMS.equals(
intentAction
)) {
50
} else if (ACTION_MY_RECEIVE_MMS.equals(
intentAction
)) {
/device/sample/apps/LeanbackWidget/src/com/google/android/leanbacklauncher/partnerwidget/
ClockWidgetProvider.java
22
String
intentAction
= intent.getAction();
24
if (INET_CONDITION_ACTION.equals(
intentAction
) ||
25
ConnectivityManager.CONNECTIVITY_ACTION.equals(
intentAction
)) {
27
if (INET_CONDITION_ACTION.equals(
intentAction
)) {
/developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java
74
String
intentAction
;
76
intentAction
= ACTION_GATT_CONNECTED;
78
broadcastUpdate(
intentAction
);
85
intentAction
= ACTION_GATT_DISCONNECTED;
88
broadcastUpdate(
intentAction
);
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java
74
String
intentAction
;
76
intentAction
= ACTION_GATT_CONNECTED;
78
broadcastUpdate(
intentAction
);
85
intentAction
= ACTION_GATT_DISCONNECTED;
88
broadcastUpdate(
intentAction
);
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
BluetoothLeService.java
74
String
intentAction
;
76
intentAction
= ACTION_GATT_CONNECTED;
78
broadcastUpdate(
intentAction
);
85
intentAction
= ACTION_GATT_DISCONNECTED;
88
broadcastUpdate(
intentAction
);
/development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/
MainActivity.java
89
String
intentAction
= getIntent() == null ? null : getIntent().getAction();
90
if (!TextUtils.isEmpty(
intentAction
) && (Intent.ACTION_SENDTO.equals(
intentAction
)
91
|| Intent.ACTION_SEND.equals(
intentAction
))) {
Completed in 470 milliseconds