replicant-packages_apps_Email/src/com/android/email/activity/IntentUtilities.java

143 lines
4.4 KiB
Java

/*
* 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.email.activity;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.text.TextUtils;
public final class IntentUtilities {
// Format for activity URIs: content://ui.email.android.com/...
private static final String ACTIVITY_INTENT_SCHEME = "content";
private static final String ACTIVITY_INTENT_HOST = "ui.email.android.com";
private static final String ACCOUNT_ID_PARAM = "ACCOUNT_ID";
private static final String MAILBOX_ID_PARAM = "MAILBOX_ID";
private static final String MESSAGE_ID_PARAM = "MESSAGE_ID";
private IntentUtilities() {
}
/**
* @return a URI builder for "content://ui.email.android.com/..."
*/
public static Uri.Builder createActivityIntentUrlBuilder(String path) {
final Uri.Builder b = new Uri.Builder();
b.scheme(ACTIVITY_INTENT_SCHEME);
b.authority(ACTIVITY_INTENT_HOST);
b.path(path);
return b;
}
/**
* Add the account ID parameter.
*/
public static void setAccountId(Uri.Builder b, long accountId) {
if (accountId != -1) {
b.appendQueryParameter(ACCOUNT_ID_PARAM, Long.toString(accountId));
}
}
/**
* Add the mailbox ID parameter.
*/
public static void setMailboxId(Uri.Builder b, long mailboxId) {
if (mailboxId != -1) {
b.appendQueryParameter(MAILBOX_ID_PARAM, Long.toString(mailboxId));
}
}
/**
* Add the message ID parameter.
*/
public static void setMessageId(Uri.Builder b, long messageId) {
if (messageId != -1) {
b.appendQueryParameter(MESSAGE_ID_PARAM, Long.toString(messageId));
}
}
/**
* Retrieve the account ID.
*/
public static long getAccountIdFromIntent(Intent intent) {
return getLongFromIntent(intent, ACCOUNT_ID_PARAM);
}
/**
* Retrieve the mailbox ID.
*/
public static long getMailboxIdFromIntent(Intent intent) {
return getLongFromIntent(intent, MAILBOX_ID_PARAM);
}
/**
* Retrieve the message ID.
*/
public static long getMessageIdFromIntent(Intent intent) {
return getLongFromIntent(intent, MESSAGE_ID_PARAM);
}
private static long getLongFromIntent(Intent intent, String paramName) {
long value = -1;
if (intent.getData() != null) {
value = getLongParamFromUri(intent.getData(), paramName, -1);
}
return value;
}
private static long getLongParamFromUri(Uri uri, String paramName, long defaultValue) {
final String value = uri.getQueryParameter(paramName);
if (!TextUtils.isEmpty(value)) {
try {
return Long.parseLong(value);
} catch (NumberFormatException e) {
// return default
}
}
return defaultValue;
}
/**
* Create an {@link Intent} to launch an activity as the main entry point. Existing activities
* will all be closed.
*/
public static Intent createRestartAppIntent(Context context, Class<? extends Activity> clazz) {
Intent i = new Intent(context, clazz);
prepareRestartAppIntent(i);
return i;
}
/**
* Create an {@link Intent} to launch an activity as the main entry point. Existing activities
* will all be closed.
*/
public static Intent createRestartAppIntent(Uri data) {
Intent i = new Intent(Intent.ACTION_MAIN, data);
prepareRestartAppIntent(i);
return i;
}
private static void prepareRestartAppIntent(Intent i) {
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_LAUNCHER);
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}
}