/development/samples/VoicemailProviderDemo/ |
_index.html | 2 This is a simple sample application that demonstrates how to use voicemail 3 content provider APIs to insert new voicemail records. 7 <a href="src/com/example/android/voicemail/AddVoicemailActivity.html"> 10 an activity that lets the user enter voicemail details and record voicemail audio, 11 which can then be stored with the voicemail content provider by tapping the "Send" 14 <img alt="Add voicemail" src="../images/VoicemailProviderDemo.png" 20 remote voicemail server and store them locally with the voicemail content 28 <a href="src/com/example/android/voicemail/common/core/VoicemailProviderHelper.html" [all...] |
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/ |
VoicemailProviderHelper.java | 17 package com.example.android.voicemail.common.core; 28 * Provides a simple interface to manipulate voicemails within the voicemail content provider. 49 * Clears all voicemails accessible to this voicemail content provider. 56 * Inserts a new voicemail into the voicemail content provider. 58 * @param voicemail data to be inserted 59 * @return {@link Uri} of the newly inserted {@link Voicemail} 62 * <li>your voicemail is missing a timestamp</li> 64 * <li>your voicemail is missing the provider id field</li> 65 * <li>voicemail has an id (which would indicate that it has already been inserted [all...] |
VoicemailProviderHelpers.java | 17 package com.example.android.voicemail.common.core; 19 import com.example.android.voicemail.common.logging.Logger; 20 import com.example.android.voicemail.common.utils.CloseUtils; 21 import com.example.android.voicemail.common.utils.DbQueryUtils; 44 /** Full projection on the voicemail table, giving us all the columns. */ 75 * <code>com.android.providers.voicemail.permission.READ_WRITE_ALL_VOICEMAIL</code> and 76 * <code>com.android.providers.voicemail.permission.READ_WRITE_OWN_VOICEMAIL</code>. 87 * <code>com.android.providers.voicemail.permission.READ_WRITE_OWN_VOICEMAIL</code>. 95 public Uri insert(Voicemail voicemail) { 98 voicemail); local 99 check(voicemail.hasNumber(), "Inserted voicemails must have a number", voicemail); local 188 Voicemail voicemail = getVoicemailFromCursor(cursor); local 275 VoicemailImpl voicemail = VoicemailImpl local [all...] |
Voicemail.java | 17 package com.example.android.voicemail.common.core; 22 * Represents a single voicemail stored in the voicemail content provider. 26 public interface Voicemail { 28 * The identifier of the voicemail in the content provider. 30 * This may be missing in the case of a new {@link Voicemail} that we plan to insert into the 38 /** The number of the person leaving the voicemail, empty string if unknown, null if not set. */ 43 /** The timestamp the voicemail was received, in millis since the epoch, zero if not set. */ 48 /** Gets the duration of the voicemail in millis, or zero if the field is not set. */ 54 * Returns the package name of the source that added this voicemail, or null if this field i [all...] |
VoicemailFilter.java | 17 package com.example.android.voicemail.common.core; 20 * An object that can be used to apply filter on voicemail queries made through the voicemail helper
|
VoicemailFilterFactory.java | 17 package com.example.android.voicemail.common.core; 19 import static com.example.android.voicemail.common.utils.DbQueryUtils.concatenateClausesWithAnd; 20 import static com.example.android.voicemail.common.utils.DbQueryUtils.concatenateClausesWithOr; 21 import static com.example.android.voicemail.common.utils.DbQueryUtils.getEqualityClause; 33 * {@link #createWithMatchingFields(Voicemail)} can be used to create a voicemail filter that 41 * where clause. Using this method requires the knowledge of the name of columns used in voicemail 46 * Creates a voicemail filter with the specified where clause. Use this method only if you know 63 /** Creates a filter with fields matching the ones set in the supplied voicemail object. */ 64 public static VoicemailFilter createWithMatchingFields(Voicemail fieldMatch) [all...] |
VoicemailImpl.java | 17 package com.example.android.voicemail.common.core; 22 * A simple immutable data object to represent a voicemail. 24 public final class VoicemailImpl implements Voicemail { 60 * Create a {@link Builder} for a new {@link Voicemail} to be inserted. 69 * Create a {@link Builder} for updating a {@link Voicemail}. 71 * Only the id of the voicemail to be updated is mandatory. 78 * Create a {@link Builder} for a new {@link Voicemail}, such as one suitable for returning from
|
/frameworks/base/core/java/android/provider/ |
VoicemailContract.java | 28 * The contract between the voicemail provider and applications. Contains 33 * <li> Voicemails table: This stores the actual voicemail records. The 37 * <li> Status table: This provides a way for the voicemail source application 46 * <P>Voicemails are inserted by what is called as a "voicemail source" 47 * application, which is responsible for syncing voicemail data between a remote 48 * server and the local voicemail content provider. "voicemail source" 52 * <P>In addition to the {@link ContentObserver} notifications the voicemail 57 * <li> {@link #ACTION_NEW_VOICEMAIL} is generated for each new voicemail 61 * made into the database, including new voicemail [all...] |
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/ |
AddVoicemailActivity.java | 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 [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
VoicemailUriType.java | 21 * Defines the different URIs handled by the voicemail content provider. 25 VOICEMAILS("voicemail"), 26 VOICEMAILS_ID("voicemail/#"),
|
VoicemailTable.java | 29 * Defines interfaces for communication between voicemail content provider and voicemail table 34 * Interface that the voicemail content provider uses to delegate database level operations 35 * to the appropriate voicemail table implementation. 51 * functionality across different voicemail tables.
|
VoicemailCleanupService.java | 29 * A service that cleans up voicemail related data for packages that are uninstalled. 50 // Delete both voicemail content and voicemail status entries for this package.
|
/packages/apps/Dialer/src/com/android/dialer/ |
CallDetailActivityQueryHandler.java | 27 import com.android.dialer.voicemail.VoicemailStatusHelperImpl; 52 * Fires a query to update voicemail status for the given voicemail record. On completion of the 55 * if this is a voicemail record then it makes up to two asynchronous content resolver queries. 56 * The first one to fetch voicemail content details and check if the voicemail record has audio. 57 * If the voicemail record does not have an audio yet then it fires the second query to get the 58 * voicemail status of the associated source. 70 // Query voicemail status only if this voicemail record does not have audio [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
VoiceMailConstants.java | 42 static final String PARTNER_VOICEMAIL_PATH ="etc/voicemail-conf.xml"; 91 XmlUtils.beginDocument(parser, "voicemail"); 97 if (!"voicemail".equals(name)) { 110 Rlog.w(LOG_TAG, "Exception in Voicemail parser " + e); 112 Rlog.w(LOG_TAG, "Exception in Voicemail parser " + e);
|
/packages/apps/Dialer/res/values-tl/ |
strings.xml | 30 <string name="recentCalls_trashVoicemail" msgid="7604696960787435655">"Tanggalin ang voicemail"</string> 31 <string name="recentCalls_shareVoicemail" msgid="1416112847592942840">"Ibahagi ang voicemail"</string> 37 <item quantity="one" msgid="1746619685488504230">"Voicemail"</item> 38 <item quantity="other" msgid="5513481419205061254">"<xliff:g id="COUNT">%1$d</xliff:g> (na) Voicemail"</item> 42 <string name="notification_new_voicemail_ticker" msgid="895342132049452081">"Bagong voicemail mula kay <xliff:g id="CALLER">%1$s</xliff:g>"</string> 43 <string name="voicemail_playback_error" msgid="1811242131549854624">"Hindi ma-play ang voicemail."</string> 45 <string name="voicemail_fetching_content" msgid="877911315738258780">"Kinukuha ang voicemail?"</string> 46 <string name="voicemail_fetching_timout" msgid="6691792377574905201">"Hindi makuha ang voicemail."</string> 47 <string name="call_log_voicemail_header" msgid="3945407886667089173">"Mga tawag lang na may voicemail"</string> 51 <string name="voicemail_status_voicemail_not_available" msgid="3021980206152528883">"Hindi makakonekta sa server ng voicemail."</string [all...] |
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
voicemailjidrequester.h | 28 // VoicemailJidRequester wraps the requesting of voicemail jids for a user. 30 // To request a voicemail jid, we first set off a query to the user's bare jid 38 // node='voicemail '/> 41 // If foo@gmail.com's server supports voicemail, it'll return this, and forward 49 // node=' voicemail '> 50 // <item jid='bar@google.com/voicemail '/> 80 // Provides the target jid and the voicemail to reach it 90 // The first query (to node='voicemail' has returned an error) - we now spin 94 // The first query (to node='voicemail' has returned a successfully) 109 // Send a query to your own jid to get the voicemail jid. This is used afte [all...] |
/packages/apps/Dialer/src/com/android/dialer/voicemail/ |
VoicemailStatusHelper.java | 17 package com.android.dialer.voicemail; 26 * Interface used by the call log UI to determine what user message, if any, related to voicemail 29 * The implementation of this interface interacts with the voicemail content provider to fetch 30 * statuses of all the registered voicemail sources and determines if any status message needs to 81 * Returns the number of active voicemail sources installed. 83 * The number of sources is counted by querying the voicemail status table.
|
/packages/apps/Dialer/res/values-en-rGB/ |
strings.xml | 30 <string name="recentCalls_trashVoicemail" msgid="7604696960787435655">"Delete voicemail"</string> 31 <string name="recentCalls_shareVoicemail" msgid="1416112847592942840">"Share voicemail"</string> 37 <item quantity="one" msgid="1746619685488504230">"Voicemail"</item> 42 <string name="notification_new_voicemail_ticker" msgid="895342132049452081">"New voicemail from <xliff:g id="CALLER">%1$s</xliff:g>"</string> 43 <string name="voicemail_playback_error" msgid="1811242131549854624">"Couldn\'t play voicemail."</string> 45 <string name="voicemail_fetching_content" msgid="877911315738258780">"Fetching voicemail?"</string> 46 <string name="voicemail_fetching_timout" msgid="6691792377574905201">"Couldn\'t fetch voicemail."</string> 47 <string name="call_log_voicemail_header" msgid="3945407886667089173">"Calls with voicemail only"</string> 51 <string name="voicemail_status_voicemail_not_available" msgid="3021980206152528883">"Cannot connect to voicemail server."</string> 52 <string name="voicemail_status_messages_waiting" msgid="7113421459602803605">"Can\'t connect to voicemail server. New voicemails are waiting."</string [all...] |
/packages/apps/Dialer/res/values-en-rIN/ |
strings.xml | 30 <string name="recentCalls_trashVoicemail" msgid="7604696960787435655">"Delete voicemail"</string> 31 <string name="recentCalls_shareVoicemail" msgid="1416112847592942840">"Share voicemail"</string> 37 <item quantity="one" msgid="1746619685488504230">"Voicemail"</item> 42 <string name="notification_new_voicemail_ticker" msgid="895342132049452081">"New voicemail from <xliff:g id="CALLER">%1$s</xliff:g>"</string> 43 <string name="voicemail_playback_error" msgid="1811242131549854624">"Couldn\'t play voicemail."</string> 45 <string name="voicemail_fetching_content" msgid="877911315738258780">"Fetching voicemail?"</string> 46 <string name="voicemail_fetching_timout" msgid="6691792377574905201">"Couldn\'t fetch voicemail."</string> 47 <string name="call_log_voicemail_header" msgid="3945407886667089173">"Calls with voicemail only"</string> 51 <string name="voicemail_status_voicemail_not_available" msgid="3021980206152528883">"Cannot connect to voicemail server."</string> 52 <string name="voicemail_status_messages_waiting" msgid="7113421459602803605">"Can\'t connect to voicemail server. New voicemails are waiting."</string [all...] |
/packages/apps/Dialer/tests/src/com/android/dialer/voicemail/ |
VoicemailStatusHelperImplTest.java | 17 package com.android.dialer.voicemail; 38 import com.android.dialer.voicemail.VoicemailStatusHelper.StatusMessage; 51 private static final Uri TEST_SETTINGS_URI = Uri.parse("http://www.visual.voicemail.setup"); 104 // action: call voicemail 105 // msg: voicemail not available in call log page & none in call details page. 119 // action: call voicemail 120 // msg: voicemail not available in call log page & audio not available in call details page. 128 // action: call voicemail 129 // msg: voicemail not available in call log page & audio not available in call details page. 137 // action: call voicemail [all...] |
/packages/apps/Dialer/res/values-nl/ |
strings.xml | 30 <string name="recentCalls_trashVoicemail" msgid="7604696960787435655">"Voicemail verwijderen"</string> 31 <string name="recentCalls_shareVoicemail" msgid="1416112847592942840">"Voicemail delen"</string> 37 <item quantity="one" msgid="1746619685488504230">"Voicemail"</item> 42 <string name="notification_new_voicemail_ticker" msgid="895342132049452081">"Nieuwe voicemail van <xliff:g id="CALLER">%1$s</xliff:g>"</string> 43 <string name="voicemail_playback_error" msgid="1811242131549854624">"Kan voicemail niet afspelen."</string> 45 <string name="voicemail_fetching_content" msgid="877911315738258780">"Voicemail ophalen?"</string> 46 <string name="voicemail_fetching_timout" msgid="6691792377574905201">"Kan voicemail niet ophalen."</string> 47 <string name="call_log_voicemail_header" msgid="3945407886667089173">"Alleen oproepen met voicemail"</string> 52 <string name="voicemail_status_messages_waiting" msgid="7113421459602803605">"Kan niet verbinden met voicemailservers. Er is nieuwe voicemail."</string> 53 <string name="voicemail_status_configure_voicemail" msgid="3738537770636895689">"Stel uw voicemail in."</string [all...] |
/development/samples/VoicemailProviderDemo/res/values/ |
strings.xml | 21 <string name="add_voicemail">Add voicemail</string> 26 <string name="voicemail_store_error">Error in storing voicemail!</string>
|
/frameworks/ex/variablespeed/tests/ |
AndroidManifest.xml | 31 <!-- The tests need these permissions to add test voicemail entries. --> 32 <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" />
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
VoicemailNotifier.java | 28 * If the given URI corresponds to a new voicemail, also notifies about it. 36 /** Clears the new voicemail notification. */
|
/packages/apps/Dialer/res/values/ |
strings.xml | 63 <!-- Menu item used to delete a voicemail. [CHAR LIMIT=30] --> 64 <string name="recentCalls_trashVoicemail">Delete voicemail</string> 66 <!-- Menu item used to share a voicemail. [CHAR LIMIT=30] --> 67 <string name="recentCalls_shareVoicemail">Share voicemail</string> 83 <item quantity="one">Voicemail</item> 90 <!-- Used in the notification of a new voicemail for the action to play the voicemail. --> 105 <!-- Text used in the ticker to notify the user of the latest voicemail. [CHAR LIMIT=30] --> 106 <string name="notification_new_voicemail_ticker">New voicemail from 110 <!-- Message to show when there is an error playing back the voicemail. [CHAR LIMIT=40] -- [all...] |