我想为文本设置样式或字体,TextView
如下图所示:
<TextView
style="@style/CodeFont"
android:text="@string/hello" />
您需要制作该代码字体样式:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CodeFont" parent="@android:style/TextAppearance.Medium">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
</style>
</resources>
直接来自:http: //developer.android.com/guide/topics/ui/themes.html
你需要一个自定义字体,然后你可以这样做:
Typeface mFont = Typeface.createFromAsset(getAssets(), "fonts/myFont.ttf");
MyTextView.setTypeface(mFont);
您必须在资产文件夹中创建一个“字体”文件夹。把你的字体放在那里。
当然,您也可以创建自定义TextView
。如果您愿意,请参考这个答案,我给了一段时间。
如果您想在许多 TextViews 上更改它,还有另一种方法,使用一个类:
public class MyTextView extends TextView {
public MyTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public MyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public MyTextView(Context context) {
super(context);
init();
}
private void init() {
if (!isInEditMode()) {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/Ubuntu-L.ttf");
setTypeface(tf);
}
}
}
并在布局中替换:
<TextView
...
/>
和:
<com.WHERE_YOUR_CLASS_IS.MyTextView
...
/>
您可以创建一个包含您的 textview 的 layout.xml 文件。就像是 :
textView.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
style="@android:style/Holo.ButtonBar" >
如果您不想要这个,那么您可以创建您的自定义样式。像这样的东西:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Custom" parent="@android:style/TextAppearance.Large" >
<item name="android:typeface">monospace</item>
</style>
</resources>
并在布局文件中将样式更改为:
style="@style/Custom"