Home | History | Annotate | Download | only in camera

Lines Matching refs:intentFilter

33 import android.content.IntentFilter;
646 IntentFilter intentFilter =
647 new IntentFilter(Intent.ACTION_MEDIA_MOUNTED);
648 intentFilter.addAction(Intent.ACTION_MEDIA_EJECT);
649 intentFilter.addAction(Intent.ACTION_MEDIA_UNMOUNTED);
650 intentFilter.addAction(Intent.ACTION_MEDIA_SCANNER_STARTED);
651 intentFilter.addAction(Intent.ACTION_MEDIA_SCANNER_FINISHED);
652 intentFilter.addDataScheme("file");
654 registerReceiver(mReceiver, intentFilter);