mirror of
https://github.com/oxen-io/session-android.git
synced 2025-10-20 22:39:52 +00:00
Clean up list of identity keys.
This commit is contained in:
@@ -17,9 +17,12 @@
|
||||
package org.thoughtcrime.securesms;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.Build;
|
||||
import android.os.Handler;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.QuickContactBadge;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.TextView;
|
||||
|
||||
@@ -37,7 +40,10 @@ public class IdentityKeyView extends RelativeLayout
|
||||
implements Recipient.RecipientModifiedListener
|
||||
{
|
||||
|
||||
private TextView identityName;
|
||||
private TextView identityName;
|
||||
private TextView fingerprint;
|
||||
private QuickContactBadge contactBadge;
|
||||
private ImageView contactImage;
|
||||
|
||||
private Recipients recipients;
|
||||
private IdentityKey identityKey;
|
||||
@@ -46,17 +52,28 @@ public class IdentityKeyView extends RelativeLayout
|
||||
|
||||
public IdentityKeyView(Context context) {
|
||||
super(context);
|
||||
|
||||
LayoutInflater li = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
||||
li.inflate(R.layout.identity_key_view, this, true);
|
||||
|
||||
initializeResources();
|
||||
}
|
||||
|
||||
public IdentityKeyView(Context context, AttributeSet attributeSet) {
|
||||
super(context, attributeSet);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFinishInflate() {
|
||||
this.identityName = (TextView)findViewById(R.id.identity_name);
|
||||
this.fingerprint = (TextView)findViewById(R.id.fingerprint);
|
||||
this.contactBadge = (QuickContactBadge)findViewById(R.id.contact_photo_badge);
|
||||
this.contactImage = (ImageView)findViewById(R.id.contact_photo_image);
|
||||
|
||||
if (isBadgeEnabled()) {
|
||||
this.contactBadge.setVisibility(View.VISIBLE);
|
||||
this.contactImage.setVisibility(View.GONE);
|
||||
} else {
|
||||
this.contactBadge.setVisibility(View.GONE);
|
||||
this.contactImage.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
||||
public void set(IdentityDatabase.Identity identity) {
|
||||
this.recipients = identity.getRecipients();
|
||||
this.identityKey = identity.getIdentityKey();
|
||||
@@ -64,14 +81,19 @@ public class IdentityKeyView extends RelativeLayout
|
||||
this.recipients.addListener(this);
|
||||
|
||||
identityName.setText(recipients.toShortString());
|
||||
fingerprint.setText(identity.getIdentityKey().getFingerprint());
|
||||
|
||||
contactBadge.setImageBitmap(recipients.getPrimaryRecipient().getContactPhoto());
|
||||
contactBadge.assignContactFromPhone(recipients.getPrimaryRecipient().getNumber(), true);
|
||||
contactImage.setImageBitmap(recipients.getPrimaryRecipient().getContactPhoto());
|
||||
}
|
||||
|
||||
public IdentityKey getIdentityKey() {
|
||||
return this.identityKey;
|
||||
}
|
||||
|
||||
private void initializeResources() {
|
||||
this.identityName = (TextView)findViewById(R.id.identity_name);
|
||||
private boolean isBadgeEnabled() {
|
||||
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@@ -66,10 +66,12 @@ public class ReviewIdentitiesFragment extends SherlockListFragment
|
||||
|
||||
private class IdentitiesListAdapter extends CursorAdapter {
|
||||
private final MasterSecret masterSecret;
|
||||
private final LayoutInflater inflater;
|
||||
|
||||
public IdentitiesListAdapter(Context context, Cursor cursor, MasterSecret masterSecret) {
|
||||
super(context, cursor);
|
||||
this.masterSecret = masterSecret;
|
||||
this.inflater = LayoutInflater.from(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -82,9 +84,7 @@ public class ReviewIdentitiesFragment extends SherlockListFragment
|
||||
|
||||
@Override
|
||||
public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
||||
IdentityKeyView identityKeyView = new IdentityKeyView(context);
|
||||
bindView(identityKeyView, context, cursor);
|
||||
return identityKeyView;
|
||||
return inflater.inflate(R.layout.identity_key_view, parent, false);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user