gpt4 book ai didi

android - 使用 android styles.xml 更改字体系列的 react native 选择器未更改

转载 作者:太空宇宙 更新时间:2023-11-03 10:59:47 27 4
gpt4 key购买 nike

我想要在 react-native 选择器上设置样式字体大小和字体系列。我已经在 native android 上设置了自定义样式。但是在我再次构建 apk 之后没有改变它仍然是相同的字体。

我在 style.xml 上的代码

<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:spinnerItemStyle">@style/SpinnerItem</item>
</style>
<style name="SpinnerItem" parent="Theme.AppCompat.Light.NoActionBar">>
<item name="android:fontFamily">CenturyGothicBold</item>
<item name="android:textSize">16dp</item>
</style>
</resources>

Already set add new font on asset with react-native link

My result

最佳答案

试试下面的代码:

 TextView tx = (TextView)findViewById(R.id.textview1);

Typeface custom_font = Typeface.createFromAsset(getAssets(), "fonts/CenturyGothicBold.ttf");

tx.setTypeface(custom_font);

或者

 AssetManager am = context.getApplicationContext().getAssets();

typeface = Typeface.createFromAsset(am,
String.format(Locale.US, "fonts/%s", "CenturyGothicBold.ttf"));

setTypeface(typeface);

关于android - 使用 android styles.xml 更改字体系列的 react native 选择器未更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46679206/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com