BmPreference.java 1.81 KB
package com.bitstrips.imoji.ui.preferences;

import android.content.Context;
import android.graphics.Typeface;
import android.preference.Preference;
import android.util.AttributeSet;
import android.view.View;
import android.widget.TextView;
import com.bitstrips.imoji.ui.BmTypefaceLoader;
import com.bitstrips.imoji.ui.BmTypefaceLoader.OnTypefaceLoadedCallback;

public class BmPreference
  extends Preference
{
  private TextView a;
  private TextView b;
  
  public BmPreference(Context paramContext)
  {
    super(paramContext);
  }
  
  public BmPreference(Context paramContext, AttributeSet paramAttributeSet)
  {
    super(paramContext, paramAttributeSet);
  }
  
  public BmPreference(Context paramContext, AttributeSet paramAttributeSet, int paramInt)
  {
    super(paramContext, paramAttributeSet, paramInt);
  }
  
  protected void onBindView(View paramView)
  {
    super.onBindView(paramView);
    this.a = ((TextView)paramView.findViewById(16908310));
    this.b = ((TextView)paramView.findViewById(16908304));
    BmTypefaceLoader.getInstance().loadTypefaceForView(getContext(), null, this.a, new BmTypefaceLoader.OnTypefaceLoadedCallback()
    {
      public final void onTypefaceLoaded(Typeface paramAnonymousTypeface)
      {
        BmPreference.a(BmPreference.this).setTypeface(paramAnonymousTypeface);
      }
    });
    BmTypefaceLoader.getInstance().loadTypefaceForView(getContext(), null, this.b, new BmTypefaceLoader.OnTypefaceLoadedCallback()
    {
      public final void onTypefaceLoaded(Typeface paramAnonymousTypeface)
      {
        BmPreference.b(BmPreference.this).setTypeface(paramAnonymousTypeface);
      }
    });
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/ui/preferences/BmPreference.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */