我想在react-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>
答案 0 :(得分:0)
尝试以下代码:
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);