HomeSort by relevance Sort by last modified time
    Searched refs:VCardService (Results 1 - 8 of 8) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/vcard/
CancelActivity.java 47 * Must be {@link VCardService#TYPE_IMPORT} or {@link VCardService#TYPE_EXPORT}.
55 VCardService.class), CancelActivity.this, Context.BIND_AUTO_CREATE);
91 if (mType == VCardService.TYPE_IMPORT) {
120 VCardService service = ((VCardService.MyBinder) binder).getService();
ExportVCardActivity.java 42 * Shows a dialog confirming the export and asks actual vCard export to {@link VCardService}
44 * This Activity first connects to VCardService and ask an available file name and shows it to
51 private static final boolean DEBUG = VCardService.DEBUG;
54 * Handler used when some Message has come from {@link VCardService}.
71 case VCardService.MSG_SET_AVAILABLE_EXPORT_DESTINATION:
100 * True when this Activity is connected to {@link VCardService}.
108 * VCardService. False when all necessary procedures are done (including sending export request)
113 private VCardService mService;
162 Intent intent = new Intent(this, VCardService.class);
183 mService = ((VCardService.MyBinder) binder).getService()
    [all...]
NfcImportVCardActivity.java 62 /* package */ class ImportTask extends AsyncTask<VCardService, Void, ImportRequest> {
64 public ImportRequest doInBackground(VCardService... services) {
140 VCardService service = ((VCardService.MyBinder) binder).getService();
203 Intent intent = new Intent(this, VCardService.class);
ImportProcessor.java 44 * {@link VCardService} will create another object when there is another import request.
48 private static final boolean DEBUG = VCardService.DEBUG;
50 private final VCardService mService;
67 public ImportProcessor(final VCardService service, final VCardImportExportListener listener,
97 return VCardService.TYPE_IMPORT;
ExportProcessor.java 44 * {@link VCardService} will create another object when there is another export request.
48 private static final boolean DEBUG = VCardService.DEBUG;
50 private final VCardService mService;
59 public ExportProcessor(VCardService service, ExportRequest exportRequest, int jobId) {
70 return VCardService.TYPE_EXPORT;
239 VCardService.TYPE_EXPORT, description, tickerText, mJobId, displayName,
NotificationImportExportListener.java 89 VCardService.TYPE_IMPORT, message, message, jobId, displayName, -1, 0);
110 mContext.getApplicationContext(), VCardService.TYPE_IMPORT, description, tickerText,
163 VCardService.TYPE_EXPORT, message, message, jobId, displayName, -1, 0);
175 final String description = type == VCardService.TYPE_IMPORT ?
222 .setSmallIcon(type == VCardService.TYPE_IMPORT
VCardService.java 54 public class VCardService extends Service {
55 private final static String LOG_TAG = "VCardService";
80 mConnection = new MediaScannerConnection(VCardService.this, this);
136 public VCardService getService() {
137 return VCardService.this;
186 if (DEBUG) Log.d(LOG_TAG, "VCardService is being destroyed.");
304 VCardService.MSG_SET_AVAILABLE_EXPORT_DESTINATION, 0, 0, path);
307 VCardService.MSG_SET_AVAILABLE_EXPORT_DESTINATION,
ImportVCardActivity.java 189 private VCardService mService;
198 mService = ((VCardService.MyBinder) binder).getService();
200 String.format("Connected to VCardService. Kick a vCard cache thread (uri: %s)",
207 Log.i(LOG_TAG, "Disconnected from VCardService");
213 * {@link VCardService}.
217 * not what this Activity launched (like {@link VCardService}).
287 // Note: caches are removed by VCardService.
289 filename = VCardService.CACHE_FILE_PREFIX + cache_index + ".vcf";
    [all...]

Completed in 507 milliseconds