有没有办法在Android Studio的预览部分查看自定义字体/视图?
我使用font-awesome作为自定义字体在我的应用程序中显示麦克风图标.一切都很好.但是众所周知,预览部分无法加载自定义视图.
在编码时是否有任何插件或黑客可以在预览窗口中查看自定义视图?
这就是我在我的应用上加载的内容:
这是我在预览部分看到的:
要在Android Studio XML设计器中显示FontAwesome图标,您可以.
创建自定义视图
在构造函数中应用字体
如果要从xml设置字体,请添加自定义attr
这是完整的演示代码
使用评论代码演示img:
重要部分:(几乎与使用XML声明自定义Android UI元素但调整较小相同)
TextViewWithFont.java - 自定义视图类
import android.content.Context; import android.content.res.TypedArray; import android.util.AttributeSet; import android.widget.TextView; public class TextViewWithFont extends TextView { public TextViewWithFont(Context context) { super(context); init(context, null, 0); } public TextViewWithFont(Context context, AttributeSet attrs) { super(context, attrs); init(context, attrs, 0); } public TextViewWithFont(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(context, attrs, defStyle); } private void init(Context context, AttributeSet attrs, int defStyle) { // Load attributes TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.TextViewPlusFont, 0, 0); try { String fontInAssets = ta.getString(R.styleable.TextViewPlusFont_customFont); setTypeface(Typefaces.get(context, "fonts/"+ fontInAssets)); } finally { ta.recycle(); } } }
res/values/attrs.xml - 需要app:customFont="fontawesome-webfont.ttf"
在我们的布局xml中使用它.
Typefaces.java - 重用字体的Helper类(字体缓存)
import android.content.Context; import android.graphics.Typeface; import android.util.Log; import java.util.Hashtable; public class Typefaces { private static final String TAG = "Typefaces"; private static final Hashtablecache = new Hashtable (); public static Typeface get(Context c, String assetPath) { synchronized (cache) { if (!cache.containsKey(assetPath)) { try { Typeface t = Typeface.createFromAsset(c.getAssets(), assetPath); cache.put(assetPath, t); Log.e(TAG, "Loaded '" + assetPath); } catch (Exception e) { Log.e(TAG, "Could not get typeface '" + assetPath + "' because " + e.getMessage()); return null; } } return cache.get(assetPath); } } }
activity_main.xml - 布局以及如何使用TextViewWithFont自定义视图