diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:49 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:49 -0800 |
commit | 8611831e36b71c844a14788998728f3cd625b833 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/com/android/browser/BrowserPluginList.java | |
parent | 1658a9bc00a3bd692908dcd5b9eb550a49f8f5ec (diff) | |
download | packages_apps_Browser-8611831e36b71c844a14788998728f3cd625b833.zip packages_apps_Browser-8611831e36b71c844a14788998728f3cd625b833.tar.gz packages_apps_Browser-8611831e36b71c844a14788998728f3cd625b833.tar.bz2 |
auto import from //depot/cupcake/@135843
Diffstat (limited to 'src/com/android/browser/BrowserPluginList.java')
-rw-r--r-- | src/com/android/browser/BrowserPluginList.java | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/src/com/android/browser/BrowserPluginList.java b/src/com/android/browser/BrowserPluginList.java deleted file mode 100644 index 6689b0e..0000000 --- a/src/com/android/browser/BrowserPluginList.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (C) 2008 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.browser; - -import android.app.ListActivity; -import android.os.Bundle; -import android.view.View; -import android.view.ViewGroup; -import android.webkit.Plugin; -import android.webkit.PluginList; -import android.webkit.WebView; -import android.widget.ArrayAdapter; -import android.widget.LinearLayout; -import android.widget.LinearLayout.LayoutParams; -import android.widget.ListView; -import android.widget.TextView; -import java.util.ArrayList; -import java.util.List; - -// Manages the list of installed (and loaded) plugins. -public class BrowserPluginList extends ListActivity { - @Override - public void onCreate(Bundle icicle) { - super.onCreate(icicle); - // The list of plugins can change under us, as the plugins are - // loaded and unloaded in a different thread. We make a copy - // of the list here. - List loadedPlugins = WebView.getPluginList().getList(); - ArrayList localLoadedPluginList = new ArrayList(); - synchronized (loadedPlugins) { - localLoadedPluginList.addAll(loadedPlugins); - } - setListAdapter(new ArrayAdapter(this, - android.R.layout.simple_list_item_1, - localLoadedPluginList)); - setTitle(R.string.pref_plugin_installed); - // Add a text view to this ListActivity. This text view - // will be displayed when the list of plugins is empty. - TextView textView = new TextView(this); - textView.setId(android.R.id.empty); - textView.setText(R.string.pref_plugin_installed_empty_list); - addContentView(textView, new LinearLayout.LayoutParams( - ViewGroup.LayoutParams.FILL_PARENT, - ViewGroup.LayoutParams.WRAP_CONTENT)); - - } - - @Override - public void onListItemClick(ListView l, View v, int position, long id) { - WebView.getPluginList().pluginClicked(this, position); - } -} |