aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-01-16 14:31:16 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2013-01-16 14:31:16 +0100
commit1feb948acf81532f82b36456080920543004b097 (patch)
treef22e51163db4303ad72b9205a3347aea8211c15e /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java
parentdbbd8f6856086a9aa17b565080959fb77dc24cd9 (diff)
downloadopen-keychain-1feb948acf81532f82b36456080920543004b097.tar.gz
open-keychain-1feb948acf81532f82b36456080920543004b097.tar.bz2
open-keychain-1feb948acf81532f82b36456080920543004b097.zip
Renaming APG to OpenPGP Keychain
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java')
-rw-r--r--OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java148
1 files changed, 148 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java
new file mode 100644
index 000000000..170b459be
--- /dev/null
+++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/ImportKeysListFragment.java
@@ -0,0 +1,148 @@
+/*
+ * Copyright (C) 2012 Dominik Schürmann <dominik@dominikschuermann.de>
+ * Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
+ *
+ * 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 org.sufficientlysecure.keychain.ui;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+import org.sufficientlysecure.keychain.Constants;
+import org.sufficientlysecure.keychain.ui.widget.ImportKeysListLoader;
+import org.sufficientlysecure.keychain.util.Log;
+import org.sufficientlysecure.keychain.R;
+
+import com.actionbarsherlock.app.SherlockListFragment;
+
+import android.app.Activity;
+import android.os.Bundle;
+import android.support.v4.content.Loader;
+import android.support.v4.app.LoaderManager;
+import android.view.View;
+import android.widget.ListView;
+import android.widget.SimpleAdapter;
+
+public class ImportKeysListFragment extends SherlockListFragment implements
+ LoaderManager.LoaderCallbacks<List<Map<String, String>>> {
+ public static String ARG_KEYRING_BYTES = "bytes";
+ public static String ARG_IMPORT_FILENAME = "filename";
+
+ byte[] mKeyringBytes;
+ String mImportFilename;
+
+ private Activity mActivity;
+ private SimpleAdapter mAdapter;
+
+ @Override
+ public void onListItemClick(ListView listView, View view, int position, long id) {
+ // Map<String, String> item = (Map<String, String>) listView.getItemAtPosition(position);
+ // String userId = item.get(ImportKeysListLoader.MAP_ATTR_USER_ID);
+ }
+
+ /**
+ * Resume is called after rotating
+ */
+ @Override
+ public void onResume() {
+ super.onResume();
+
+ // Start out with a progress indicator.
+ setListShown(false);
+
+ // reload list
+ getLoaderManager().restartLoader(0, null, this);
+ }
+
+ /**
+ * Define Adapter and Loader on create of Activity
+ */
+ @Override
+ public void onActivityCreated(Bundle savedInstanceState) {
+ super.onActivityCreated(savedInstanceState);
+
+ mActivity = this.getActivity();
+
+ mKeyringBytes = getArguments().getByteArray(ARG_KEYRING_BYTES);
+ mImportFilename = getArguments().getString(ARG_IMPORT_FILENAME);
+
+ // register long press context menu
+ registerForContextMenu(getListView());
+
+ // Give some text to display if there is no data. In a real
+ // application this would come from a resource.
+ setEmptyText(mActivity.getString(R.string.error_nothingImport));
+
+ // Create an empty adapter we will use to display the loaded data.
+ String[] from = new String[] {};
+ int[] to = new int[] {};
+ List<Map<String, String>> data = new ArrayList<Map<String, String>>();
+ mAdapter = new SimpleAdapter(getActivity(), data, android.R.layout.two_line_list_item,
+ from, to);
+ setListAdapter(mAdapter);
+
+ // Start out with a progress indicator.
+ setListShown(false);
+
+ // Prepare the loader. Either re-connect with an existing one,
+ // or start a new one.
+ getLoaderManager().initLoader(0, null, this);
+ }
+
+ @Override
+ public Loader<List<Map<String, String>>> onCreateLoader(int id, Bundle args) {
+ return new ImportKeysListLoader(mActivity, mKeyringBytes, mImportFilename);
+ }
+
+ @Override
+ public void onLoadFinished(Loader<List<Map<String, String>>> loader,
+ List<Map<String, String>> data) {
+ // Set the new data in the adapter.
+ // for (String item : data) {
+ // mAdapter.add(item);
+ // }
+ Log.d(Constants.TAG, "data: " + data);
+ // TODO: real swapping the data to the already defined adapter doesn't work
+ // Workaround: recreate adapter!
+ // http://stackoverflow.com/questions/2356091/android-add-function-of-arrayadapter-not-working
+ // mAdapter = new ArrayAdapter<String>(mActivity, android.R.layout.two_line_list_item,
+ // data);
+
+ String[] from = new String[] { ImportKeysListLoader.MAP_ATTR_USER_ID,
+ ImportKeysListLoader.MAP_ATTR_FINGERPINT };
+ int[] to = new int[] { android.R.id.text1, android.R.id.text2 };
+ mAdapter = new SimpleAdapter(getActivity(), data, android.R.layout.two_line_list_item,
+ from, to);
+
+ mAdapter.notifyDataSetChanged();
+ setListAdapter(mAdapter);
+
+ // The list should now be shown.
+ if (isResumed()) {
+ setListShown(true);
+ } else {
+ setListShownNoAnimation(true);
+ }
+ }
+
+ @Override
+ public void onLoaderReset(Loader<List<Map<String, String>>> loader) {
+ // Clear the data in the adapter.
+ // Not available in SimpleAdapter!
+ // mAdapter.clear();
+ }
+
+}