summaryrefslogtreecommitdiff
path: root/src/com/android/basicsmsreceiver/DialogSmsDisplay.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/basicsmsreceiver/DialogSmsDisplay.java')
-rwxr-xr-xsrc/com/android/basicsmsreceiver/DialogSmsDisplay.java94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/com/android/basicsmsreceiver/DialogSmsDisplay.java b/src/com/android/basicsmsreceiver/DialogSmsDisplay.java
new file mode 100755
index 0000000..a6bb19b
--- /dev/null
+++ b/src/com/android/basicsmsreceiver/DialogSmsDisplay.java
@@ -0,0 +1,94 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.basicsmsreceiver;
+
+import java.util.Locale;
+
+import android.app.Activity;
+import android.app.AlertDialog;
+import android.app.Dialog;
+import android.app.NotificationManager;
+import android.content.Context;
+import android.content.DialogInterface;
+import android.content.Intent;
+import android.os.Bundle;
+import android.util.Log;
+import android.view.KeyEvent;
+import android.view.View;
+import android.view.Window;
+
+public class DialogSmsDisplay extends Activity {
+ private static final String LOG_TAG = "SmsReceivedDialog";
+
+ private static final int DIALOG_SHOW_MESSAGE = 1;
+
+ public static final String SMS_FROM_ADDRESS_EXTRA =
+ "com.android.basicsmsreceiver.SMS_FROM_ADDRESS";
+ public static final String SMS_MESSAGE_EXTRA =
+ "com.android.basicsmsreceiver.SMS_MESSAGE";
+ public static final String SMS_NOTIFICATION_ID_EXTRA =
+ "com.android.basicsmsreceiver.NOTIFICATION_ID";
+
+ private String mFromAddress;
+ private String mMessage;
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ Bundle extras = getIntent().getExtras();
+ mFromAddress = extras.getString(SMS_FROM_ADDRESS_EXTRA);
+ mMessage = extras.getString(SMS_MESSAGE_EXTRA);
+ int notificationId = extras.getInt(SMS_NOTIFICATION_ID_EXTRA);
+
+ Log.i(LOG_TAG, "notificationId: " + notificationId);
+
+ // Dismiss the notification that brought us here.
+ NotificationManager notificationManager =
+ (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
+ notificationManager.cancel(notificationId);
+
+ showDialog(DIALOG_SHOW_MESSAGE);
+ }
+
+ @Override
+ protected Dialog onCreateDialog(int id) {
+ switch (id) {
+ case DIALOG_SHOW_MESSAGE:
+ return new AlertDialog.Builder(this)
+ .setTitle(String.format(getString(R.string.sms_message_from_format),
+ mFromAddress))
+ .setMessage(mMessage)
+ .setCancelable(true)
+ .setOnCancelListener(new AlertDialog.OnCancelListener() {
+ public void onCancel(DialogInterface dialog) {
+ dialog.dismiss();
+ finish();
+ }
+ })
+ .setNeutralButton(R.string.sms_done_button,
+ new DialogInterface.OnClickListener() {
+ public void onClick(DialogInterface dialog, int whichButton) {
+ dialog.dismiss();
+ finish();
+ }
+ })
+ .create();
+ }
+ return null;
+ }
+}