所以我想在Android中更改fontFamily,但我想为标题和子文本使用不同的字体系列。我怎样才能实现它??
答案 0 :(得分:0)
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Enter the password :"
android:textColor="#000000"
android:fontFamily="sans-serif"
android:layout_marginTop="75dp"/>
答案 1 :(得分:0)
如果你想使用font-family中不可用的不同字体,你可以从互联网下载该字体,然后
将您的字体放入资源文件夹,然后从中创建新的字体
这是一个例子
TextView txt = (TextView) findViewById(R.id.custom_font);
Typeface font = Typeface.createFromAsset(getAssets(), "SomeFont.ttf");
txt.setTypeface(font);