Home | History | Annotate | Download | only in voicemail

Lines Matching full:voicemail

17 package com.example.android.voicemail;
19 import com.example.android.voicemail.common.core.Voicemail;
20 import com.example.android.voicemail.common.core.VoicemailImpl;
21 import com.example.android.voicemail.common.core.VoicemailProviderHelper;
22 import com.example.android.voicemail.common.core.VoicemailProviderHelpers;
23 import com.example.android.voicemail.common.inject.InjectView;
24 import com.example.android.voicemail.common.inject.Injector;
25 import com.example.android.voicemail.common.logging.Logger;
26 import com.example.android.voicemail.common.ui.DialogHelperImpl;
27 import com.example.android.voicemail.common.utils.CloseUtils;
49 * A simple activity that stores user entered voicemail data into voicemail content provider. To be
50 * used as a test voicemail source.
103 // Save voicemail button.
115 Pair<Voicemail, Uri> newVoicemail = new Pair<Voicemail, Uri>(
123 private Voicemail buildVoicemailObjectFromUiElements() throws ParseException {
186 * An async task that inserts a new voicemail record using a background thread.
187 * The tasks accepts a pair of voicemail object and the recording Uri as the param.
190 private class InsertVoicemailTask extends AsyncTask<Pair<Voicemail, Uri>, Void, Exception> {
192 protected Exception doInBackground(Pair<Voicemail, Uri>... params) {
203 private void insertVoicemail(Voicemail voicemail, Uri recordingUri) throws IOException {
206 Uri newVoicemailUri = mVoicemailProviderHelper.insert(voicemail);
207 logger.i("Inserted new voicemail URI: " + newVoicemailUri);