Back to project page MagicViews.
The source code is released under:
Apache License
If you think the Android project MagicViews listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ivankocijan.magicviews.preference; /*from w w w. java2 s . com*/ import android.content.Context; import android.preference.EditTextPreference; import android.util.AttributeSet; import android.view.View; import android.widget.TextView; import com.ivankocijan.magicviews.enums.PreferenceType; import com.ivankocijan.magicviews.utils.FontUtils; /** * Created by ivankocijan on 23.05.2014.. */ public class MagicEditTextPreference extends EditTextPreference { private Context context; private String fontStyle; public MagicEditTextPreference (Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(context, attrs); } public MagicEditTextPreference (Context context, AttributeSet attrs) { super(context, attrs); init(context, attrs); } public MagicEditTextPreference (Context context) { super(context); } private void init (Context ctx, AttributeSet attrs) { this.context = ctx; fontStyle = FontUtils.getPrefFontStyle(ctx, attrs, PreferenceType.EDIT_TEXT_PREFERENCE); } @Override protected void onBindView (View view) { super.onBindView(view); TextView titleView = (TextView) view.findViewById(android.R.id.title); TextView summary = (TextView) view.findViewById(android.R.id.summary); if (titleView != null && context != null) { FontUtils.setPreferenceTypeface(context, fontStyle, titleView, summary); } } }