BmTextView.java
1.46 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
package com.bitstrips.imoji.ui.views;
import android.content.Context;
import android.graphics.Typeface;
import android.support.v7.widget.AppCompatTextView;
import android.util.AttributeSet;
import com.bitstrips.imoji.ui.BmTypefaceLoader;
import com.bitstrips.imoji.ui.BmTypefaceLoader.OnTypefaceLoadedCallback;
public class BmTextView
extends AppCompatTextView
implements BmTypefaceLoader.OnTypefaceLoadedCallback
{
private boolean a = false;
public BmTextView(Context paramContext)
{
this(paramContext, null);
}
public BmTextView(Context paramContext, AttributeSet paramAttributeSet)
{
this(paramContext, paramAttributeSet, 16842884);
}
public BmTextView(Context paramContext, AttributeSet paramAttributeSet, int paramInt)
{
super(paramContext, paramAttributeSet, paramInt);
BmTypefaceLoader.getInstance().loadTypefaceForView(paramContext, paramAttributeSet, this, this);
}
public void onTypefaceLoaded(Typeface paramTypeface)
{
super.setTypeface(paramTypeface, paramTypeface.getStyle());
}
public void setTypeface(Typeface paramTypeface, int paramInt)
{
if (this.a)
{
BmTypefaceLoader.getInstance().loadTypefaceStyle(getContext(), paramInt, this);
return;
}
super.setTypeface(paramTypeface, paramInt);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/ui/views/BmTextView.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/