Merge pull request #973 from timbray/development

Make the Certify screen a little more self-explanatory
This commit is contained in:
Dominik Schürmann 2014-10-24 00:23:40 +02:00
commit bfc3774f02
4 changed files with 32 additions and 72 deletions

View File

@ -69,8 +69,7 @@ public class MultiUserIdsAdapter extends CursorAdapter {
@Override @Override
public void bindView(View view, Context context, Cursor cursor) { public void bindView(View view, Context context, Cursor cursor) {
View vHeader = view.findViewById(R.id.user_id_header); TextView vHeaderId = (TextView) view.findViewById(R.id.user_id_header);
TextView vHeaderId = (TextView) view.findViewById(R.id.user_id_header_id);
TextView vName = (TextView) view.findViewById(R.id.user_id_item_name); TextView vName = (TextView) view.findViewById(R.id.user_id_item_name);
TextView vAddresses = (TextView) view.findViewById(R.id.user_id_item_addresses); TextView vAddresses = (TextView) view.findViewById(R.id.user_id_item_addresses);
@ -84,10 +83,12 @@ public class MultiUserIdsAdapter extends CursorAdapter {
if (isHeader == 1) { if (isHeader == 1) {
long masterKeyId = cursor.getLong(0); long masterKeyId = cursor.getLong(0);
vHeader.setVisibility(View.VISIBLE); vHeaderId.setVisibility(View.VISIBLE);
vHeaderId.setText(KeyFormattingUtils.beautifyKeyIdWithPrefix(mContext, masterKeyId)); String message = mContext.getString(R.string.section_uids_to_certify) +
KeyFormattingUtils.beautifyKeyIdWithPrefix(mContext, masterKeyId);
vHeaderId.setText(message);
} else { } else {
vHeader.setVisibility(View.GONE); vHeaderId.setVisibility(View.GONE);
} }
{ // first one { // first one

View File

@ -6,50 +6,29 @@
android:orientation="vertical" android:orientation="vertical"
android:singleLine="true"> android:singleLine="true">
<LinearLayout android:id="@+id/user_id_header" <TextView android:id="@+id/user_id_header"
android:layout_width="match_parent" style="@style/SectionHeader"
android:layout_height="wrap_content" android:text="Identities for Key ID: 0123 4567 890a bcde"
android:orientation="vertical" android:layout_width="match_parent"
android:clickable="true" android:layout_height="wrap_content"
android:layout_marginLeft="8dip" android:orientation="vertical"
android:layout_marginTop="16dip"> android:clickable="true"
android:layout_marginLeft="8dip"
<LinearLayout android:layout_width="match_parent" android:layout_marginTop="8dip"/>
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/user_id_header_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ID: 0123 4567 890a bcde"
android:textAppearance="?android:attr/textAppearanceMedium"
/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dip"
android:background="?android:attr/listDivider"
android:paddingLeft="24dip"
android:paddingRight="24dip"
android:layout_marginBottom="4dip"/>
</LinearLayout>
<LinearLayout android:id="@+id/user_id_body" <LinearLayout android:id="@+id/user_id_body"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal" android:orientation="horizontal"
android:singleLine="true" android:singleLine="true"
android:layout_marginLeft="8dip" android:layout_marginLeft="8dip"
android:layout_marginTop="4dip"> android:layout_marginTop="4dip">
<CheckBox <CheckBox
android:id="@+id/user_id_item_check_box" android:id="@+id/user_id_item_check_box"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="match_parent" android:layout_height="match_parent"
android:gravity="top|center"
android:clickable="false" android:clickable="false"
android:focusable="false" /> android:focusable="false" />

View File

@ -10,37 +10,17 @@
android:paddingRight="16dp" android:paddingRight="16dp"
android:orientation="vertical"> android:orientation="vertical">
<LinearLayout <TextView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="16dp" android:layout_marginTop="16dp"
android:layout_marginBottom="8dp" android:layout_marginBottom="8dp"
android:orientation="horizontal"> android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
<ImageView android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content" android:text="@string/certify_text"
android:layout_height="wrap_content" android:id="@+id/textView"
android:id="@+id/imageView" android:layout_weight="1" />
android:src="@drawable/ic_action_person"
android:layout_gravity="center_vertical" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/certify_text"
android:id="@+id/textView"
android:layout_weight="1" />
</LinearLayout>
<TextView
style="@style/SectionHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/section_uids_to_certify" />
<org.sufficientlysecure.keychain.ui.widget.FixedListView <org.sufficientlysecure.keychain.ui.widget.FixedListView
android:id="@+id/view_key_user_ids" android:id="@+id/view_key_user_ids"

View File

@ -137,7 +137,7 @@
<string name="label_name">"Name"</string> <string name="label_name">"Name"</string>
<string name="label_comment">"Comment"</string> <string name="label_comment">"Comment"</string>
<string name="label_email">"Email"</string> <string name="label_email">"Email"</string>
<string name="label_send_key">"Synchronize with public keyservers"</string> <string name="label_send_key">"Synchronize with the cloud"</string>
<string name="label_fingerprint">"Fingerprint"</string> <string name="label_fingerprint">"Fingerprint"</string>
<string name="expiry_date_dialog_title">"Set expiry date"</string> <string name="expiry_date_dialog_title">"Set expiry date"</string>
<string name="label_first_keyserver_is_used">"(First keyserver listed is preferred)"</string> <string name="label_first_keyserver_is_used">"(First keyserver listed is preferred)"</string>
@ -1013,8 +1013,8 @@
<string name="unknown_uid">"&lt;unknown&gt;"</string> <string name="unknown_uid">"&lt;unknown&gt;"</string>
<string name="empty_certs">"No certificates for this key"</string> <string name="empty_certs">"No certificates for this key"</string>
<string name="certs_text">"Only validated self-certificates and validated certificates created with your keys are displayed here."</string> <string name="certs_text">"Only validated self-certificates and validated certificates created with your keys are displayed here."</string>
<string name="section_uids_to_certify">"Identities"</string> <string name="section_uids_to_certify">"Identities for "</string>
<string name="certify_text">"Do the selected identities match the persons you are exchanging keys with? Deselect all unknown ones."</string> <string name="certify_text">"The keys youre importing contain “identities”: names and emails. If these match what you expected, you can say so by “certifying” them. If they dont match, you probably shouldnt use these keys."</string>
<string name="label_revocation">"Revocation Reason"</string> <string name="label_revocation">"Revocation Reason"</string>
<string name="label_verify_status">"Verification Status"</string> <string name="label_verify_status">"Verification Status"</string>
<string name="label_cert_type">"Type"</string> <string name="label_cert_type">"Type"</string>