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;
|
|
|
|
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;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
|
|
|
|
2017-08-16 12:01:26 -07:00
|
|
|
import org.thoughtcrime.securesms.R;
|
2017-10-16 13:11:42 -07:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ProfileContactPhoto;
|
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ResourceContactPhoto;
|
2017-08-16 12:01:26 -07:00
|
|
|
import org.thoughtcrime.securesms.database.Address;
|
2017-10-16 13:11:42 -07:00
|
|
|
import org.thoughtcrime.securesms.mms.GlideApp;
|
2017-08-16 12:01:26 -07:00
|
|
|
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;
|
|
|
|
|
|
|
|
final Address localAddress = Address.fromSerialized(TextSecurePreferences.getLocalNumber(getContext()));
|
|
|
|
final String profileName = TextSecurePreferences.getProfileName(getContext());
|
2017-08-16 12:01:26 -07:00
|
|
|
|
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);
|
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
|
|
|
}
|
|
|
|
|
2017-08-24 17:40:35 -07:00
|
|
|
profileNumberView.setText(localAddress.toPhoneString());
|
2017-08-16 12:01:26 -07:00
|
|
|
}
|
|
|
|
}
|