所以我想根据this回答在我的应用中为我的按钮和textview制作自定义字体。我知道,如果我把这个放在onCreate的活动中,这种方式更简单:
String fontPath = "fonts/Geometos.ttf";
Button mButton = (Button) findViewById(R.id.login_button);
Typeface tf = Typeface.createFromAsset(getAssets(), fontPath);
mButton.setTypeface(tf);
但如果我想为许多视图使用自定义字体,那么它不是一个好的解决方案。
我创建了CustomFontHelper,FontCache和MyButton类,就像在链接的答案中一样。我有相同的attrs.xml,我的style.xml看起来像这样:
<style name="Button" parent="@android:style/Widget.Button">
<item name="android:background">@color/colorPrimary</item>
<item name="android:textSize">50sp</item>
<item name="android:textColor">@color/SecondaryTextColor</item>
<item name="uzoltan.readout:font">fonts/Geometos.TTF</item>
</style>
这是我的活动xml中的视图声明:
<uzoltan.readout.Font.MyButton //my package name is uzoltan.readout and I have the MyButton, FontCache and CustomFontHelper classes in a package called Font
style="@style/Button"
android:id="@+id/login_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/login_button_text"/>
当然我有ttf文件,因为它适用于我在开始时复制的更简单的解决方案。我看到调试和FontCache类中发生了什么,这就是发生的事情:
Typeface tf = fontCache.get(name); //returns null
if(tf == null) {
try {
tf = Typeface.createFromAsset(context.getAssets(), name); //still returns null
}
catch (Exception e) { //Runtime exception, font asset not found fonts/Gemetos.TTF
return null;
}
意味着在CustomFontHelper类中,setTypeFace永远不会被调用。所以我的问题是FontCache中createFromAsset调用的错误是什么?为什么它会返回null?
编辑:我还尝试跳过FontCache并在CustomFontHelper中使用此行:
Typeface tf = Typeface.createFromAsset(context.getAssets(), font);
但这会导致运行时失效的原因相同:&#34; java.lang.RuntimeException:找不到字体资源字体/ Geometos.TTF&#34; (我的字体目录是src / main / assets / fonts / Geometos.TTF
编辑2:问题是.TTF(带大写字母),所以如果我在styles.xml中使用<item name="uzoltan.readout:font">fonts/Geometos.ttf</item>
,那么一切正常。
答案 0 :(得分:1)
您可以使用下面给出的自定义按钮类。将您的字体放在asset / font文件夹中。
public class CustomButton extends Button{
public CustomButton(Context context, AttributeSet attrs) {
super(context, attrs);
init();
// TODO Auto-generated constructor stub
}
public CustomButton(Context context) {
super(context);
init();
// TODO Auto-generated constructor stub
}
public CustomButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
// TODO Auto-generated constructor stub
}
private void init(){
Typeface font_type=Typeface.createFromAsset(getContext().getAssets(), "font/ProximaNova-Bold.ttf");
setTypeface(font_type);
}
}
现在您可以使用xml中的按钮,如下所示。
<model.CustomButton
android:id="@+id/search"
android:layout_width="@dimen/edittext_width_large"
android:layout_height="@dimen/button_height"
android:layout_below="@+id/cars"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/pad_20dp"
android:background="@drawable/button_pressed_bg"
android:text="@string/find_car"
android:textColor="@color/white" />
答案 1 :(得分:1)