0

我是菜鸟。我在这里看到了一些解决方案,而这只是在我脑海中浮现。谁能帮我在按钮中设置字体?此外,如果我可以将其设为斜体、粗体等。这是我的 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"/>
4

1 回答 1

1

如果没有购买许可证,您将无法使用 Comic sans 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

于 2013-11-05T11:07:16.297 回答