mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-17 07:30:14 -05:00
code styling
This commit is contained in:
parent
cdb3e04b47
commit
52c55aaabe
@ -96,9 +96,11 @@
|
|||||||
android:padding="4dp"
|
android:padding="4dp"
|
||||||
android:text="@string/section_user_ids" />
|
android:text="@string/section_user_ids" />
|
||||||
|
|
||||||
<ListView android:id="@+id/user_ids"
|
<ListView
|
||||||
|
android:id="@+id/user_ids"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"></ListView>
|
android:layout_height="wrap_content" >
|
||||||
|
</ListView>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
style="@style/SectionHeader"
|
style="@style/SectionHeader"
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 Bahtiar 'kalkin' Gadimov
|
||||||
|
* Copyright (C) 2013 Dominik Schürmann <dominik@dominikschuermann.de>
|
||||||
|
*
|
||||||
|
* 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 <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
package org.sufficientlysecure.keychain.ui;
|
package org.sufficientlysecure.keychain.ui;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -40,11 +58,11 @@ public class KeyDetailsActivity extends SherlockActivity {
|
|||||||
KeyRings.buildPublicKeyRingsByMasterKeyIdUri(key + "");
|
KeyRings.buildPublicKeyRingsByMasterKeyIdUri(key + "");
|
||||||
String[] projection = new String[] { "" };
|
String[] projection = new String[] { "" };
|
||||||
|
|
||||||
this.publicKey = ProviderHelper.getPGPPublicKeyByKeyId(
|
this.publicKey = ProviderHelper.getPGPPublicKeyByKeyId(getApplicationContext(), key);
|
||||||
getApplicationContext(), key);
|
|
||||||
|
|
||||||
TextView fingerprint = (TextView) this.findViewById(R.id.fingerprint);
|
TextView fingerprint = (TextView) this.findViewById(R.id.fingerprint);
|
||||||
fingerprint.setText(PgpKeyHelper.shortifyFingerprint(PgpKeyHelper.getFingerPrint(getApplicationContext(), key)));
|
fingerprint.setText(PgpKeyHelper.shortifyFingerprint(PgpKeyHelper.getFingerPrint(
|
||||||
|
getApplicationContext(), key)));
|
||||||
String[] mainUserId = splitUserId("");
|
String[] mainUserId = splitUserId("");
|
||||||
|
|
||||||
TextView expiry = (TextView) this.findViewById(R.id.expiry);
|
TextView expiry = (TextView) this.findViewById(R.id.expiry);
|
||||||
@ -52,13 +70,12 @@ public class KeyDetailsActivity extends SherlockActivity {
|
|||||||
if (expiryDate == null) {
|
if (expiryDate == null) {
|
||||||
expiry.setText("");
|
expiry.setText("");
|
||||||
} else {
|
} else {
|
||||||
expiry.setText(DateFormat.getDateFormat(getApplicationContext())
|
expiry.setText(DateFormat.getDateFormat(getApplicationContext()).format(expiryDate));
|
||||||
.format(expiryDate));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TextView creation = (TextView) this.findViewById(R.id.creation);
|
TextView creation = (TextView) this.findViewById(R.id.creation);
|
||||||
creation.setText(DateFormat.getDateFormat(getApplicationContext())
|
creation.setText(DateFormat.getDateFormat(getApplicationContext()).format(
|
||||||
.format(PgpKeyHelper.getCreationDate(publicKey)));
|
PgpKeyHelper.getCreationDate(publicKey)));
|
||||||
mAlgorithm = (TextView) this.findViewById(R.id.algorithm);
|
mAlgorithm = (TextView) this.findViewById(R.id.algorithm);
|
||||||
mAlgorithm.setText(PgpKeyHelper.getAlgorithmInfo(publicKey));
|
mAlgorithm.setText(PgpKeyHelper.getAlgorithmInfo(publicKey));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user