2017-09-21 10:03:05 -07:00
|
|
|
package org.thoughtcrime.securesms.preferences.widgets;
|
2017-08-16 12:01:26 -07:00
|
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.graphics.Outline;
|
2017-08-16 12:01:26 -07:00
|
|
|
import android.os.Build;
|
|
|
|
import android.support.annotation.RequiresApi;
|
2017-09-20 18:10:44 -07:00
|
|
|
import android.support.v7.preference.Preference;
|
|
|
|
import android.support.v7.preference.PreferenceViewHolder;
|
2017-08-16 12:01:26 -07:00
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.util.AttributeSet;
|
2019-07-17 09:45:20 +10:00
|
|
|
import android.view.View;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.view.ViewOutlineProvider;
|
|
|
|
import android.view.ViewTreeObserver;
|
2017-08-16 12:01:26 -07:00
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2019-07-22 12:13:53 +10:00
|
|
|
import com.lelloman.identicon.drawable.ClassicIdenticonDrawable;
|
2017-10-16 13:11:42 -07:00
|
|
|
|
2019-07-24 12:30:23 +10:00
|
|
|
import network.loki.messenger.R;
|
2017-08-16 12:01:26 -07:00
|
|
|
import org.thoughtcrime.securesms.database.Address;
|
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
|
|
|
|
public class ProfilePreference extends Preference {
|
|
|
|
|
2017-08-24 17:40:35 -07:00
|
|
|
private ImageView avatarView;
|
|
|
|
private TextView profileNameView;
|
|
|
|
private TextView profileNumberView;
|
|
|
|
|
2017-08-16 12:01:26 -07:00
|
|
|
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
public ProfilePreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
|
|
|
super(context, attrs, defStyleAttr, defStyleRes);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProfilePreference(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
|
|
super(context, attrs, defStyleAttr);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProfilePreference(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ProfilePreference(Context context) {
|
|
|
|
super(context);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initialize() {
|
|
|
|
setLayoutResource(R.layout.profile_preference_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-09-20 18:10:44 -07:00
|
|
|
public void onBindViewHolder(PreferenceViewHolder viewHolder) {
|
|
|
|
super.onBindViewHolder(viewHolder);
|
|
|
|
avatarView = (ImageView)viewHolder.findViewById(R.id.avatar);
|
|
|
|
profileNameView = (TextView)viewHolder.findViewById(R.id.profile_name);
|
|
|
|
profileNumberView = (TextView)viewHolder.findViewById(R.id.number);
|
2017-08-24 17:40:35 -07:00
|
|
|
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void refresh() {
|
|
|
|
if (profileNumberView == null) return;
|
|
|
|
|
2019-07-22 12:13:53 +10:00
|
|
|
String userHexEncodedPublicKey = TextSecurePreferences.getLocalNumber(getContext());
|
|
|
|
final Address localAddress = Address.fromSerialized(userHexEncodedPublicKey);
|
2017-08-24 17:40:35 -07:00
|
|
|
final String profileName = TextSecurePreferences.getProfileName(getContext());
|
2017-08-16 12:01:26 -07:00
|
|
|
|
2019-07-22 12:13:53 +10:00
|
|
|
avatarView.setOutlineProvider(new ViewOutlineProvider() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void getOutline(View view, Outline outline) {
|
|
|
|
outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
avatarView.setClipToOutline(true);
|
|
|
|
avatarView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onPreDraw() {
|
|
|
|
avatarView.getViewTreeObserver().removeOnPreDrawListener(this);
|
|
|
|
ClassicIdenticonDrawable identicon = new ClassicIdenticonDrawable(avatarView.getWidth(), avatarView.getHeight(), userHexEncodedPublicKey.hashCode());
|
|
|
|
avatarView.setImageDrawable(identicon);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
2017-10-16 13:11:42 -07:00
|
|
|
GlideApp.with(getContext().getApplicationContext())
|
|
|
|
.load(new ProfileContactPhoto(localAddress, String.valueOf(TextSecurePreferences.getProfileAvatarId(getContext()))))
|
|
|
|
.error(new ResourceContactPhoto(R.drawable.ic_camera_alt_white_24dp).asDrawable(getContext(), getContext().getResources().getColor(R.color.grey_400)))
|
|
|
|
.circleCrop()
|
|
|
|
.diskCacheStrategy(DiskCacheStrategy.ALL)
|
|
|
|
.into(avatarView);
|
2019-07-22 12:13:53 +10:00
|
|
|
*/
|
2017-08-16 12:01:26 -07:00
|
|
|
|
2017-08-24 17:40:35 -07:00
|
|
|
if (!TextUtils.isEmpty(profileName)) {
|
|
|
|
profileNameView.setText(profileName);
|
2017-08-16 12:01:26 -07:00
|
|
|
}
|
|
|
|
|
2019-07-17 09:45:20 +10:00
|
|
|
profileNameView.setVisibility(TextUtils.isEmpty(profileName) ? View.GONE : View.VISIBLE);
|
|
|
|
|
2017-08-24 17:40:35 -07:00
|
|
|
profileNumberView.setText(localAddress.toPhoneString());
|
2017-08-16 12:01:26 -07:00
|
|
|
}
|
|
|
|
}
|