AvatarStyleViewHolder.java
961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.bitstrips.imoji.abv3.style;
import android.view.View;
import android.widget.ImageView;
import com.bitstrips.imoji.persistence.MediaCache;
import com.squareup.picasso.RequestCreator;
public class AvatarStyleViewHolder
{
private final View a;
private final ImageView b;
private final MediaCache c;
private final String d;
public AvatarStyleViewHolder(View paramView, MediaCache paramMediaCache, String paramString)
{
this.a = paramView;
this.b = ((ImageView)paramView.findViewById(2131689943));
this.c = paramMediaCache;
this.d = paramString;
}
public View getView()
{
return this.a;
}
public void setAvatarImage()
{
if (this.d != null) {
this.c.load(this.d).into(this.b);
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/abv3/style/AvatarStyleViewHolder.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/