自定义字体和XML布局(Android)我试图在Android中使用XML文件定义GUI布局。据我所知,没有办法指定您的小部件应该在XML文件中使用自定义字体(例如,您在资产/字体/中放置的字体),而且您只能使用已安装的系统字体。我知道,在Java代码中,我可以使用唯一的ID手动更改每个小部件的字体。或者,我可以迭代Java中的所有小部件来进行此更改,但这可能会非常慢。我还有别的选择吗?有什么更好的方法来制作具有自定义外观的小部件吗?我并不特别想手动更改我添加的每个新小部件的字体。
3 回答
largeQ
TA贡献2039条经验 获得超7个赞
public class OpenSans {private static OpenSans instance;private static Typeface typeface;public static OpenSans getInstance(Context context) { synchronized (OpenSans.class) { if (instance == null) { instance = new OpenSans(); typeface = Typeface.createFromAsset(context.getResources().getAssets(), "open_sans.ttf"); } return instance; }}public Typeface getTypeFace() { return typeface;}}
public class NativelyCustomTextView extends TextView { public NativelyCustomTextView(Context context) { super(context); setTypeface(OpenSans.getInstance(context).getTypeFace()); } public NativelyCustomTextView(Context context, AttributeSet attrs) { super(context, attrs); setTypeface(OpenSans.getInstance(context).getTypeFace()); } public NativelyCustomTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); setTypeface(OpenSans.getInstance(context).getTypeFace()); }}
<com.yourpackage.views.NativelyCustomTextView android:id="@+id/natively_text_view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_margin="20dp" android:text="@string/natively" android:textSize="30sp" />
TextView programmaticallyTextView = (TextView) findViewById(R.id.programmatically_text_view);programmaticallyTextView.setTypeface(OpenSans.getInstance(this) .getTypeFace());
添加回答
举报
0/150
提交
取消