aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/dictionarypack/DownloadOverMeteredDialog.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-03-15 19:00:51 +0900
committerJean Chalard <jchalard@google.com>2013-03-19 15:40:14 +0900
commit0cc0544a2995c7eb54a830ae54db60af89d4073d (patch)
tree095745e7050c4a8f557f8967217f332874c78f04 /java/src/com/android/inputmethod/dictionarypack/DownloadOverMeteredDialog.java
parent5b048292540b6fbbd8929a3622262f352245d464 (diff)
downloadlatinime-0cc0544a2995c7eb54a830ae54db60af89d4073d.tar.gz
latinime-0cc0544a2995c7eb54a830ae54db60af89d4073d.tar.xz
latinime-0cc0544a2995c7eb54a830ae54db60af89d4073d.zip
Merge the dictionary pack in Latin IME.
Bug: 8161354 Change-Id: I17c23f56dd3bc2f27726556bf2c5a9d5520bd172
Diffstat (limited to 'java/src/com/android/inputmethod/dictionarypack/DownloadOverMeteredDialog.java')
-rw-r--r--java/src/com/android/inputmethod/dictionarypack/DownloadOverMeteredDialog.java77
1 files changed, 77 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/dictionarypack/DownloadOverMeteredDialog.java b/java/src/com/android/inputmethod/dictionarypack/DownloadOverMeteredDialog.java
new file mode 100644
index 000000000..d3c0a910f
--- /dev/null
+++ b/java/src/com/android/inputmethod/dictionarypack/DownloadOverMeteredDialog.java
@@ -0,0 +1,77 @@
+/*
+ * Copyright (C) 2012 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.inputmethod.dictionarypack;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.text.Html;
+import android.view.View;
+import android.widget.Button;
+import android.widget.TextView;
+
+import com.android.inputmethod.latin.R;
+
+import java.util.Locale;
+
+/**
+ * This implements the dialog for asking the user whether it's okay to download dictionaries over
+ * a metered connection or not (e.g. their mobile data plan).
+ */
+public final class DownloadOverMeteredDialog extends Activity {
+ final public static String CLIENT_ID_KEY = "client_id";
+ final public static String WORDLIST_TO_DOWNLOAD_KEY = "wordlist_to_download";
+ final public static String SIZE_KEY = "size";
+ final public static String LOCALE_KEY = "locale";
+ private String mClientId;
+ private String mWordListToDownload;
+
+ @Override
+ protected void onCreate(final Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ final Intent intent = getIntent();
+ mClientId = intent.getStringExtra(CLIENT_ID_KEY);
+ mWordListToDownload = intent.getStringExtra(WORDLIST_TO_DOWNLOAD_KEY);
+ final String localeString = intent.getStringExtra(LOCALE_KEY);
+ final long size = intent.getIntExtra(SIZE_KEY, 0);
+ setContentView(R.layout.download_over_metered);
+ setTexts(localeString, size);
+ }
+
+ private void setTexts(final String localeString, final long size) {
+ final String promptFormat = getString(R.string.should_download_over_metered_prompt);
+ final String allowButtonFormat = getString(R.string.download_over_metered);
+ final Locale locale = LocaleUtils.constructLocaleFromString(localeString);
+ final String language = (null == locale ? "" : locale.getDisplayLanguage());
+ final TextView prompt = (TextView)findViewById(R.id.download_over_metered_prompt);
+ prompt.setText(Html.fromHtml(String.format(promptFormat, language)));
+ final Button allowButton = (Button)findViewById(R.id.allow_button);
+ allowButton.setText(String.format(allowButtonFormat, ((float)size)/(1024*1024)));
+ }
+
+ public void onClickDeny(final View v) {
+ UpdateHandler.setDownloadOverMeteredSetting(this, false);
+ finish();
+ }
+
+ public void onClickAllow(final View v) {
+ UpdateHandler.setDownloadOverMeteredSetting(this, true);
+ UpdateHandler.installIfNeverRequested(this, mClientId, mWordListToDownload,
+ false /* mayPrompt */);
+ finish();
+ }
+}