OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:quickResponse
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
QuickResponse.java
36
public final class
QuickResponse
extends EmailContent
38
public static final String TABLE_NAME = "
QuickResponse
";
41
+ "/
quickresponse
");
43
EmailContent.CONTENT_URI + "/
quickresponse
/account");
58
* Creates an empty
QuickResponse
. Restore should be called after.
60
private
QuickResponse
() {
67
private
QuickResponse
(Parcel in) {
75
* Creates
QuickResponse
associated with a particular account using the given string.
77
public
QuickResponse
(long accountKey, String
quickResponse
) {
[
all
...]
/packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsEditQuickResponsesFragment.java
25
import com.android.emailcommon.provider.
QuickResponse
;
69
private static class ArrayAdapterWithButtons extends ArrayAdapter<
QuickResponse
> {
70
private
QuickResponse
[] mQuickResponses;
78
QuickResponse
quickResponse
= (
QuickResponse
) (view.getTag());
80
.newInstance(
quickResponse
, mAccountId)
88
final
QuickResponse
quickResponse
= (
QuickResponse
) view.getTag()
[
all
...]
EditQuickResponseDialog.java
20
import com.android.emailcommon.provider.
QuickResponse
;
42
private
QuickResponse
mQuickResponse;
49
* Creates a new dialog to edit an existing
QuickResponse
or create a new
52
* @param
quickResponse
- The
QuickResponse
fwhich the user is editing;
53
* null if user is creating a new
QuickResponse
.
54
* @param accountId - The accountId for the account which holds this
QuickResponse
57
QuickResponse
quickResponse
, long accountId) {
62
if (
quickResponse
!= null)
[
all
...]
/packages/apps/Email/src/com/android/email/activity/
InsertQuickResponseDialog.java
39
* Callback.onQuickResponseSelected() with the selected
QuickResponse
text.
50
* Callback interface for when user selects a
QuickResponse
.
54
* Handles the text of the selected
QuickResponse
.
56
public void onQuickResponseSelected(CharSequence
quickResponse
);
Completed in 263 milliseconds