Home | History | Annotate | Download | only in handover

Lines Matching defs:intent

22 import android.content.Intent;
47 "android.btopp.intent.action.HANDOVER_SEND";
50 "android.btopp.intent.action.HANDOVER_SEND_MULTIPLE";
119 Intent intent = new Intent();
120 intent.setPackage("com.android.bluetooth");
122 intent.setType(mimeType);
123 intent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice);
125 intent.setAction(ACTION_HANDOVER_SEND);
126 intent.putExtra(Intent.EXTRA_STREAM, mUris[0]);
129 intent.setAction(ACTION_HANDOVER_SEND_MULTIPLE);
130 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
133 mContext.sendBroadcast(intent);