blob: 52b48bb499d26c57bf19a4cbc0bc3fbb11bb12ee [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.settings;
18
Jeff Sharkeye16e44f2014-11-13 18:02:31 -080019import android.app.Activity;
20import android.content.ActivityNotFoundException;
21import android.content.Intent;
22import android.net.Uri;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080023import android.os.Bundle;
24import android.os.SystemProperties;
25import android.text.TextUtils;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080026import android.util.Log;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080027import android.widget.Toast;
28
Jeff Sharkeye16e44f2014-11-13 18:02:31 -080029import java.io.File;
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080030
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080031/**
32 * The "dialog" that shows from "License" in the Settings app.
33 */
Henrik Carlsson2cb19ab2010-09-03 11:08:19 +020034public class SettingsLicenseActivity extends Activity {
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080035 private static final String TAG = "SettingsLicenseActivity";
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080036
37 private static final String DEFAULT_LICENSE_PATH = "/system/etc/NOTICE.html.gz";
38 private static final String PROPERTY_LICENSE_PATH = "ro.config.license_path";
39
40 @Override
41 protected void onCreate(Bundle savedInstanceState) {
42 super.onCreate(savedInstanceState);
43
Jeff Sharkeye16e44f2014-11-13 18:02:31 -080044 final String path = SystemProperties.get(PROPERTY_LICENSE_PATH, DEFAULT_LICENSE_PATH);
45 if (TextUtils.isEmpty(path)) {
46 Log.e(TAG, "The system property for the license file is empty");
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080047 showErrorAndFinish();
48 return;
49 }
50
Jeff Sharkeye16e44f2014-11-13 18:02:31 -080051 final File file = new File(path);
52 if (!file.exists() || file.length() == 0) {
53 Log.e(TAG, "License file " + path + " does not exist");
54 showErrorAndFinish();
55 return;
Henrik Carlsson2cb19ab2010-09-03 11:08:19 +020056 }
Jeff Sharkeye16e44f2014-11-13 18:02:31 -080057
58 // Kick off external viewer due to WebView security restrictions; we
59 // carefully point it at HTMLViewer, since it offers to decompress
60 // before viewing.
61 final Intent intent = new Intent(Intent.ACTION_VIEW);
62 intent.setDataAndType(Uri.fromFile(file), "text/html");
63 intent.putExtra(Intent.EXTRA_TITLE, getString(R.string.settings_license_activity_title));
64 intent.addCategory(Intent.CATEGORY_DEFAULT);
65 intent.setPackage("com.android.htmlviewer");
66
67 try {
68 startActivity(intent);
69 finish();
70 } catch (ActivityNotFoundException e) {
71 Log.e(TAG, "Failed to find viewer", e);
72 showErrorAndFinish();
Amith Yamasanic101d2d2011-11-11 13:25:07 -080073 }
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080074 }
75
76 private void showErrorAndFinish() {
77 Toast.makeText(this, R.string.settings_license_activity_unavailable, Toast.LENGTH_LONG)
78 .show();
79 finish();
80 }
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080081}