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

时间:2017-10-11 03:15:25

标签: android react-native react-native-android

我想在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>

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

My result

1 个答案:

答案 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);