我是个菜鸟。我在这里已经看到了一些解决方案,而这些解决方案只是在我脑海中浮现。任何人都可以帮我在按钮中设置字体吗?此外,如果我可以使它斜体,粗体等。这是我的XML代码
<Button
android:id="@+id/button1"
android:layout_width="60dp"
android:layout_height="40dp"
android:layout_alignBottom="@+id/tableLayout1"
android:layout_alignRight="@+id/relativeLayout1"
android:background="@drawable/crea"
android:textSize="30sp"
android:textColor="#ff0000"/>
答案 0 :(得分:1)
您无法在未购买许可证的情况下使用漫画版MS:
https://docs.microsoft.com/en-us/typography/font-redistribution-licensing
有免费的类似字体:
https://fontlibrary.org/en/font/comic-relief
使用不同字体的基本操作是将字体文件添加到项目中的 assets 文件夹,然后在窗口小部件上使用 setTypeface :
Typeface font = Typeface.createFromAsset(getAssets(), "ComicRelief.ttf");
Button bt=(Button) findViewById(R.id.button0);
bt.setTypeface(font);
此处使用字体的完整信息:
https://tekeye.uk/android/examples/android-textview-edittext-font