From be3e6ae6eff504ebb82883419248f16e2208dcff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Sun, 26 Oct 2014 02:16:39 +0200 Subject: [PATCH] Move advanced info into own activity --- OpenKeychain/src/main/AndroidManifest.xml | 5 + .../keychain/ui/ViewKeyActivity.java | 78 +------- .../keychain/ui/ViewKeyAdvancedActivity.java | 93 +++++++++ ...ment.java => ViewKeyAdvancedFragment.java} | 187 +++++++++++------- .../keychain/ui/ViewKeyKeysFragment.java | 113 ----------- .../keychain/util/Preferences.java | 10 - .../res/layout/view_key_advanced_activity.xml | 22 +++ .../res/layout/view_key_advanced_fragment.xml | 87 ++++++++ .../res/layout/view_key_certs_fragment.xml | 47 ----- .../res/layout/view_key_keys_fragment.xml | 32 --- OpenKeychain/src/main/res/menu/key_view.xml | 1 - OpenKeychain/src/main/res/values/strings.xml | 2 + 12 files changed, 332 insertions(+), 345 deletions(-) create mode 100644 OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvancedActivity.java rename OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/{ViewKeyCertsFragment.java => ViewKeyAdvancedFragment.java} (68%) delete mode 100644 OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyKeysFragment.java create mode 100644 OpenKeychain/src/main/res/layout/view_key_advanced_activity.xml create mode 100644 OpenKeychain/src/main/res/layout/view_key_advanced_fragment.xml delete mode 100644 OpenKeychain/src/main/res/layout/view_key_certs_fragment.xml delete mode 100644 OpenKeychain/src/main/res/layout/view_key_keys_fragment.xml diff --git a/OpenKeychain/src/main/AndroidManifest.xml b/OpenKeychain/src/main/AndroidManifest.xml index dd394a6d1..6cfb07189 100644 --- a/OpenKeychain/src/main/AndroidManifest.xml +++ b/OpenKeychain/src/main/AndroidManifest.xml @@ -414,6 +414,11 @@ android:name="android.support.PARENT_ACTIVITY" android:value=".ui.ViewKeyActivity" /> + + = TAB_KEYS) { - // remove _after_ switching to the main tab - mViewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() { - @Override - public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { - } - - @Override - public void onPageSelected(int position) { - } - - @Override - public void onPageScrollStateChanged(int state) { - if (ViewPager.SCROLL_STATE_SETTLING == state) { - mTabsAdapter.removeTab(TAB_CERTS); - mTabsAdapter.removeTab(TAB_KEYS); - - // update layout after operations - mSlidingTabLayout.setViewPager(mViewPager); - - // remove this listener again -// mViewPager.setOnPageChangeListener(null); - } - } - }); - - mViewPager.setCurrentItem(TAB_MAIN); - } else { - mTabsAdapter.removeTab(TAB_CERTS); - mTabsAdapter.removeTab(TAB_KEYS); - } - - // update layout after operations - mSlidingTabLayout.setViewPager(mViewPager); - } - @Override public boolean onCreateOptionsMenu(Menu menu) { super.onCreateOptionsMenu(menu); getMenuInflater().inflate(R.menu.key_view, menu); - MenuItem showAdvancedInfoItem = menu.findItem(R.id.menu_key_view_advanced); - showAdvancedInfoItem.setChecked(mShowAdvancedTabs); return true; } @@ -279,14 +214,9 @@ public class ViewKeyActivity extends ActionBarActivity implements return true; } case R.id.menu_key_view_advanced: { - mShowAdvancedTabs = !mShowAdvancedTabs; - Preferences.getPreferences(this).setShowAdvancedTabs(mShowAdvancedTabs); - item.setChecked(mShowAdvancedTabs); - if (mShowAdvancedTabs) { - addAdvancedTabs(mDataUri); - } else { - removeAdvancedTabs(); - } + Intent advancedIntent = new Intent(this, ViewKeyAdvancedActivity.class); + advancedIntent.setData(mDataUri); + startActivity(advancedIntent); } } } catch (ProviderHelper.NotFoundException e) { diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvancedActivity.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvancedActivity.java new file mode 100644 index 000000000..f49f8e7cf --- /dev/null +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvancedActivity.java @@ -0,0 +1,93 @@ +/* + * Copyright (C) 2013-2014 Dominik Schürmann + * Copyright (C) 2013 Bahtiar 'kalkin' Gadimov + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package org.sufficientlysecure.keychain.ui; + +import android.net.Uri; +import android.os.Bundle; +import android.support.v7.app.ActionBar; +import android.support.v7.app.ActionBarActivity; +import android.view.View; + +import org.sufficientlysecure.keychain.Constants; +import org.sufficientlysecure.keychain.R; +import org.sufficientlysecure.keychain.provider.ProviderHelper; +import org.sufficientlysecure.keychain.ui.util.ActionBarHelper; +import org.sufficientlysecure.keychain.util.ExportHelper; +import org.sufficientlysecure.keychain.util.Log; + +public class ViewKeyAdvancedActivity extends ActionBarActivity { + + ExportHelper mExportHelper; + ProviderHelper mProviderHelper; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + mExportHelper = new ExportHelper(this); + mProviderHelper = new ProviderHelper(this); + + // Inflate a "Done" custom action bar + ActionBarHelper.setOneButtonView(getSupportActionBar(), + R.string.btn_okay, R.drawable.ic_action_done, + new View.OnClickListener() { + @Override + public void onClick(View v) { + // "Done" + finish(); + } + } + ); + + setContentView(R.layout.view_key_advanced_activity); + + Uri dataUri = getIntent().getData(); + if (dataUri == null) { + Log.e(Constants.TAG, "Data missing. Should be uri of key!"); + finish(); + return; + } + + Log.i(Constants.TAG, "mDataUri: " + dataUri.toString()); + + startFragment(savedInstanceState, dataUri); + } + + + private void startFragment(Bundle savedInstanceState, Uri dataUri) { + // However, if we're being restored from a previous state, + // then we don't need to do anything and should return or else + // we could end up with overlapping fragments. + if (savedInstanceState != null) { + return; + } + + // Create an instance of the fragment + ViewKeyAdvancedFragment frag = ViewKeyAdvancedFragment.newInstance(dataUri); + + // Add the fragment to the 'fragment_container' FrameLayout + // NOTE: We use commitAllowingStateLoss() to prevent weird crashes! + getSupportFragmentManager().beginTransaction() + .replace(R.id.view_key_advanced_fragment, frag) + .commitAllowingStateLoss(); + // do it immediately! + getSupportFragmentManager().executePendingTransactions(); + } + +} diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyCertsFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvancedFragment.java similarity index 68% rename from OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyCertsFragment.java rename to OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvancedFragment.java index 6b1cee221..9c37f2d94 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyCertsFragment.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvancedFragment.java @@ -1,6 +1,5 @@ /* * Copyright (C) 2014 Dominik Schürmann - * Copyright (C) 2014 Vincent Breitmoser * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,70 +21,88 @@ import android.content.Context; import android.content.Intent; import android.database.Cursor; import android.net.Uri; -import android.os.Build; import android.os.Bundle; import android.support.v4.app.LoaderManager; import android.support.v4.content.CursorLoader; import android.support.v4.content.Loader; import android.support.v4.widget.CursorAdapter; -import android.text.SpannableStringBuilder; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; +import android.widget.ListView; import android.widget.TextView; import org.sufficientlysecure.keychain.Constants; import org.sufficientlysecure.keychain.R; import org.sufficientlysecure.keychain.pgp.KeyRing; -import org.sufficientlysecure.keychain.ui.util.KeyFormattingUtils; import org.sufficientlysecure.keychain.pgp.WrappedSignature; -import org.sufficientlysecure.keychain.provider.KeychainContract.Certs; -import org.sufficientlysecure.keychain.provider.KeychainDatabase.Tables; +import org.sufficientlysecure.keychain.provider.KeychainContract; +import org.sufficientlysecure.keychain.provider.KeychainDatabase; +import org.sufficientlysecure.keychain.ui.adapter.SubkeysAdapter; +import org.sufficientlysecure.keychain.ui.util.KeyFormattingUtils; import org.sufficientlysecure.keychain.util.Log; import se.emilsjolander.stickylistheaders.StickyListHeadersAdapter; import se.emilsjolander.stickylistheaders.StickyListHeadersListView; -public class ViewKeyCertsFragment extends LoaderFragment - implements LoaderManager.LoaderCallbacks, AdapterView.OnItemClickListener { - - // These are the rows that we will retrieve. - static final String[] PROJECTION = new String[]{ - Certs._ID, - Certs.MASTER_KEY_ID, - Certs.VERIFIED, - Certs.TYPE, - Certs.RANK, - Certs.KEY_ID_CERTIFIER, - Certs.USER_ID, - Certs.SIGNER_UID - }; - - // sort by our user id, - static final String SORT_ORDER = - Tables.CERTS + "." + Certs.RANK + " ASC, " - + Certs.VERIFIED + " DESC, " - + Certs.TYPE + " DESC, " - + Certs.SIGNER_UID + " ASC"; +public class ViewKeyAdvancedFragment extends LoaderFragment implements + LoaderManager.LoaderCallbacks, AdapterView.OnItemClickListener { public static final String ARG_DATA_URI = "data_uri"; + private ListView mSubkeysList; + private SubkeysAdapter mSubkeysAdapter; + private StickyListHeadersListView mStickyList; - private CertListAdapter mAdapter; + private CertListAdapter mCertsAdapter; - private Uri mDataUri; + private Uri mDataUriSubkeys; + private Uri mDataUriCerts; - // starting with 4 for this fragment - private static final int LOADER_ID = 4; + private static final int LOADER_SUBKEYS = 1; + private static final int LOADER_CERTS = 2; + + // These are the rows that we will retrieve. + static final String[] CERTS_PROJECTION = new String[]{ + KeychainContract.Certs._ID, + KeychainContract.Certs.MASTER_KEY_ID, + KeychainContract.Certs.VERIFIED, + KeychainContract.Certs.TYPE, + KeychainContract.Certs.RANK, + KeychainContract.Certs.KEY_ID_CERTIFIER, + KeychainContract.Certs.USER_ID, + KeychainContract.Certs.SIGNER_UID + }; + + // sort by our user id, + static final String CERTS_SORT_ORDER = + KeychainDatabase.Tables.CERTS + "." + KeychainContract.Certs.RANK + " ASC, " + + KeychainContract.Certs.VERIFIED + " DESC, " + + KeychainContract.Certs.TYPE + " DESC, " + + KeychainContract.Certs.SIGNER_UID + " ASC"; + + /** + * Creates new instance of this fragment + */ + public static ViewKeyAdvancedFragment newInstance(Uri dataUri) { + ViewKeyAdvancedFragment frag = new ViewKeyAdvancedFragment(); + + Bundle args = new Bundle(); + args.putParcelable(ARG_DATA_URI, dataUri); + + frag.setArguments(args); + return frag; + } @Override public View onCreateView(LayoutInflater inflater, ViewGroup superContainer, Bundle savedInstanceState) { View root = super.onCreateView(inflater, superContainer, savedInstanceState); - View view = inflater.inflate(R.layout.view_key_certs_fragment, getContainer()); + View view = inflater.inflate(R.layout.view_key_advanced_fragment, getContainer()); - mStickyList = (StickyListHeadersListView) view.findViewById(R.id.list); + mSubkeysList = (ListView) view.findViewById(R.id.keys); + mStickyList = (StickyListHeadersListView) view.findViewById(R.id.certs_list); return root; } @@ -94,52 +111,94 @@ public class ViewKeyCertsFragment extends LoaderFragment public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); - if (!getArguments().containsKey(ARG_DATA_URI)) { + Uri dataUri = getArguments().getParcelable(ARG_DATA_URI); + if (dataUri == null) { Log.e(Constants.TAG, "Data missing. Should be Uri of key!"); getActivity().finish(); return; } - Uri uri = getArguments().getParcelable(ARG_DATA_URI); - mDataUri = Certs.buildCertsUri(uri); + loadData(dataUri); + } + + private void loadData(Uri dataUri) { + mDataUriSubkeys = KeychainContract.Keys.buildKeysUri(dataUri); + mDataUriCerts = KeychainContract.Certs.buildCertsUri(dataUri); mStickyList.setAreHeadersSticky(true); mStickyList.setDrawingListUnderStickyHeader(false); - mStickyList.setFastScrollEnabled(true); mStickyList.setOnItemClickListener(this); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { - mStickyList.setFastScrollAlwaysVisible(true); - } - mStickyList.setEmptyView(getActivity().findViewById(R.id.empty)); // Create an empty adapter we will use to display the loaded data. - mAdapter = new CertListAdapter(getActivity(), null); - mStickyList.setAdapter(mAdapter); + mSubkeysAdapter = new SubkeysAdapter(getActivity(), null, 0); + mSubkeysList.setAdapter(mSubkeysAdapter); - getLoaderManager().initLoader(LOADER_ID, null, this); + mCertsAdapter = new CertListAdapter(getActivity(), null); + mStickyList.setAdapter(mCertsAdapter); + + // Prepare the loaders. Either re-connect with an existing ones, + // or start new ones. + getLoaderManager().initLoader(LOADER_SUBKEYS, null, this); + getLoaderManager().initLoader(LOADER_CERTS, null, this); } - @Override public Loader onCreateLoader(int id, Bundle args) { setContentShown(false); - // Now create and return a CursorLoader that will take care of - // creating a Cursor for the data being displayed. - return new CursorLoader(getActivity(), mDataUri, PROJECTION, null, null, SORT_ORDER); + switch (id) { + case LOADER_SUBKEYS: + return new CursorLoader(getActivity(), mDataUriSubkeys, + SubkeysAdapter.SUBKEYS_PROJECTION, null, null, null); + + case LOADER_CERTS: + // Now create and return a CursorLoader that will take care of + // creating a Cursor for the data being displayed. + return new CursorLoader(getActivity(), mDataUriCerts, + CERTS_PROJECTION, null, null, CERTS_SORT_ORDER); + + default: + return null; + } } - @Override public void onLoadFinished(Loader loader, Cursor data) { + // Avoid NullPointerExceptions, if we get an empty result set. + if (data.getCount() == 0) { + return; + } + // Swap the new cursor in. (The framework will take care of closing the // old cursor once we return.) - mAdapter.swapCursor(data); - - mStickyList.setAdapter(mAdapter); + switch (loader.getId()) { + case LOADER_SUBKEYS: + mSubkeysAdapter.swapCursor(data); + break; + case LOADER_CERTS: + mCertsAdapter.swapCursor(data); + mStickyList.setAdapter(mCertsAdapter); + break; + } + // TODO: maybe show not before both are loaded! setContentShown(true); } + /** + * This is called when the last Cursor provided to onLoadFinished() above is about to be closed. + * We need to make sure we are no longer using it. + */ + public void onLoaderReset(Loader loader) { + switch (loader.getId()) { + case LOADER_SUBKEYS: + mSubkeysAdapter.swapCursor(null); + break; + case LOADER_CERTS: + mCertsAdapter.swapCursor(null); + break; + } + } + /** * On click on item, start key view activity */ @@ -151,19 +210,12 @@ public class ViewKeyCertsFragment extends LoaderFragment long certifierId = (Long) view.getTag(R.id.tag_certifierId); Intent viewIntent = new Intent(getActivity(), ViewCertActivity.class); - viewIntent.setData(Certs.buildCertsSpecificUri( + viewIntent.setData(KeychainContract.Certs.buildCertsSpecificUri( masterKeyId, rank, certifierId)); startActivity(viewIntent); } } - @Override - public void onLoaderReset(Loader loader) { - // This is called when the last Cursor provided to onLoadFinished() - // above is about to be closed. We need to make sure we are no - // longer using it. - mAdapter.swapCursor(null); - } /** * Implements StickyListHeadersAdapter from library @@ -196,13 +248,13 @@ public class ViewKeyCertsFragment extends LoaderFragment */ private void initIndex(Cursor cursor) { if (cursor != null) { - mIndexMasterKeyId = cursor.getColumnIndexOrThrow(Certs.MASTER_KEY_ID); - mIndexUserId = cursor.getColumnIndexOrThrow(Certs.USER_ID); - mIndexRank = cursor.getColumnIndexOrThrow(Certs.RANK); - mIndexType = cursor.getColumnIndexOrThrow(Certs.TYPE); - mIndexVerified = cursor.getColumnIndexOrThrow(Certs.VERIFIED); - mIndexSignerKeyId = cursor.getColumnIndexOrThrow(Certs.KEY_ID_CERTIFIER); - mIndexSignerUserId = cursor.getColumnIndexOrThrow(Certs.SIGNER_UID); + mIndexMasterKeyId = cursor.getColumnIndexOrThrow(KeychainContract.Certs.MASTER_KEY_ID); + mIndexUserId = cursor.getColumnIndexOrThrow(KeychainContract.Certs.USER_ID); + mIndexRank = cursor.getColumnIndexOrThrow(KeychainContract.Certs.RANK); + mIndexType = cursor.getColumnIndexOrThrow(KeychainContract.Certs.TYPE); + mIndexVerified = cursor.getColumnIndexOrThrow(KeychainContract.Certs.VERIFIED); + mIndexSignerKeyId = cursor.getColumnIndexOrThrow(KeychainContract.Certs.KEY_ID_CERTIFIER); + mIndexSignerUserId = cursor.getColumnIndexOrThrow(KeychainContract.Certs.SIGNER_UID); } } @@ -323,5 +375,4 @@ public class ViewKeyCertsFragment extends LoaderFragment } } - } diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyKeysFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyKeysFragment.java deleted file mode 100644 index e46637871..000000000 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyKeysFragment.java +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (C) 2014 Dominik Schürmann - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package org.sufficientlysecure.keychain.ui; - -import android.database.Cursor; -import android.net.Uri; -import android.os.Bundle; -import android.support.v4.app.LoaderManager; -import android.support.v4.content.CursorLoader; -import android.support.v4.content.Loader; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.ListView; - -import org.sufficientlysecure.keychain.Constants; -import org.sufficientlysecure.keychain.R; -import org.sufficientlysecure.keychain.provider.KeychainContract.Keys; -import org.sufficientlysecure.keychain.ui.adapter.SubkeysAdapter; -import org.sufficientlysecure.keychain.util.Log; - - -public class ViewKeyKeysFragment extends LoaderFragment implements - LoaderManager.LoaderCallbacks { - - public static final String ARG_DATA_URI = "uri"; - - private ListView mKeys; - - private SubkeysAdapter mKeysAdapter; - - private Uri mDataUri; - - @Override - public View onCreateView(LayoutInflater inflater, ViewGroup superContainer, Bundle savedInstanceState) { - View root = super.onCreateView(inflater, superContainer, savedInstanceState); - View view = inflater.inflate(R.layout.view_key_keys_fragment, getContainer()); - - mKeys = (ListView) view.findViewById(R.id.keys); - - return root; - } - - @Override - public void onActivityCreated(Bundle savedInstanceState) { - super.onActivityCreated(savedInstanceState); - - Uri dataUri = getArguments().getParcelable(ARG_DATA_URI); - if (dataUri == null) { - Log.e(Constants.TAG, "Data missing. Should be Uri of key!"); - getActivity().finish(); - return; - } - - loadData(dataUri); - } - - private void loadData(Uri dataUri) { - mDataUri = dataUri; - - Log.i(Constants.TAG, "mDataUri: " + mDataUri.toString()); - - mKeysAdapter = new SubkeysAdapter(getActivity(), null, 0); - mKeys.setAdapter(mKeysAdapter); - - // Prepare the loaders. Either re-connect with an existing ones, - // or start new ones. - getLoaderManager().initLoader(0, null, this); - } - - public Loader onCreateLoader(int id, Bundle args) { - setContentShown(false); - Uri baseUri = Keys.buildKeysUri(mDataUri); - return new CursorLoader(getActivity(), baseUri, - SubkeysAdapter.SUBKEYS_PROJECTION, null, null, null); - } - - public void onLoadFinished(Loader loader, Cursor data) { - // Avoid NullPointerExceptions, if we get an empty result set. - if(data.getCount() == 0) { - return; - } - // Swap the new cursor in. (The framework will take care of closing the - // old cursor once we return.) - mKeysAdapter.swapCursor(data); - - setContentShown(true); - } - - /** - * This is called when the last Cursor provided to onLoadFinished() above is about to be closed. - * We need to make sure we are no longer using it. - */ - public void onLoaderReset(Loader loader) { - mKeysAdapter.swapCursor(null); - } - -} diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/Preferences.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/Preferences.java index 52e083fd4..65f4af880 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/Preferences.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/Preferences.java @@ -157,16 +157,6 @@ public class Preferences { editor.commit(); } - public boolean getShowAdvancedTabs() { - return mSharedPreferences.getBoolean(Pref.SHOW_ADVANCED_TABS, false); - } - - public void setShowAdvancedTabs(boolean value) { - SharedPreferences.Editor editor = mSharedPreferences.edit(); - editor.putBoolean(Pref.SHOW_ADVANCED_TABS, value); - editor.commit(); - } - public boolean getCachedConsolidate() { return mSharedPreferences.getBoolean(Pref.CACHED_CONSOLIDATE, false); } diff --git a/OpenKeychain/src/main/res/layout/view_key_advanced_activity.xml b/OpenKeychain/src/main/res/layout/view_key_advanced_activity.xml new file mode 100644 index 000000000..a581caa0e --- /dev/null +++ b/OpenKeychain/src/main/res/layout/view_key_advanced_activity.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/OpenKeychain/src/main/res/layout/view_key_advanced_fragment.xml b/OpenKeychain/src/main/res/layout/view_key_advanced_fragment.xml new file mode 100644 index 000000000..9a2190f7e --- /dev/null +++ b/OpenKeychain/src/main/res/layout/view_key_advanced_fragment.xml @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OpenKeychain/src/main/res/layout/view_key_certs_fragment.xml b/OpenKeychain/src/main/res/layout/view_key_certs_fragment.xml deleted file mode 100644 index 1cf826b30..000000000 --- a/OpenKeychain/src/main/res/layout/view_key_certs_fragment.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/OpenKeychain/src/main/res/layout/view_key_keys_fragment.xml b/OpenKeychain/src/main/res/layout/view_key_keys_fragment.xml deleted file mode 100644 index caea22341..000000000 --- a/OpenKeychain/src/main/res/layout/view_key_keys_fragment.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - diff --git a/OpenKeychain/src/main/res/menu/key_view.xml b/OpenKeychain/src/main/res/menu/key_view.xml index 5a156b5ac..049c7013a 100644 --- a/OpenKeychain/src/main/res/menu/key_view.xml +++ b/OpenKeychain/src/main/res/menu/key_view.xml @@ -17,7 +17,6 @@ \ No newline at end of file diff --git a/OpenKeychain/src/main/res/values/strings.xml b/OpenKeychain/src/main/res/values/strings.xml index 40f2d56be..48e26ae7f 100644 --- a/OpenKeychain/src/main/res/values/strings.xml +++ b/OpenKeychain/src/main/res/values/strings.xml @@ -40,6 +40,7 @@ "Log" "Create Key" "Exchange Keys" + "Advanced Key Info" "Identities" @@ -59,6 +60,7 @@ "Key to be certified" "Files" "Text" + "Certificates" "Decrypt, verify, and save file"