Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:intent

25 import android.content.Intent;
50 Intent intent = getActivity().getIntent();
51 mNeedAuth = intent.getBooleanExtra(BluetoothDevicePicker.EXTRA_NEED_AUTH, false);
52 setFilter(intent.getIntExtra(BluetoothDevicePicker.EXTRA_FILTER_TYPE,
54 mLaunchPackage = intent.getStringExtra(BluetoothDevicePicker.EXTRA_LAUNCH_PACKAGE);
55 mLaunchClass = intent.getStringExtra(BluetoothDevicePicker.EXTRA_LAUNCH_CLASS);
112 Intent intent = new Intent(BluetoothDevicePicker.ACTION_DEVICE_SELECTED);
113 intent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
115 intent.setClassName(mLaunchPackage, mLaunchClass);
117 getActivity().sendBroadcast(intent);