我使用这种方式定义的fonttype,android studio的布局设计视图以weathericon字体显示字符串/ textview。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimaryLight">
<TextView
android:id="@+id/tvFragThird"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:fontFamily="@font/weathericons"
android:text="@string/textview"
android:textSize="30sp" />
</RelativeLayout>
但是,当我运行这段代码时:
public class ThirdFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_third, container, false);
TextView tv = (TextView) v.findViewById(R.id.tvFragThird);
// Typeface typeface = ResourcesCompat.getFont(getContext(), R.font.weathericons);
// tv.setTypeface(typeface);
tv.setText("");//getArguments().getString("msg"));
return v;
}
我只是用普通字体获取文本。我已经尝试在java中定义fontfamily布局和字体,但它们都没有工作。
我缺少什么?
答案 0 :(得分:0)
正如此处https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml所述,使用 fontFamily 的自定义字体需要 API> = 26 。
因此,将 TextView 标记更改为 android.support.v7.widget.AppCompatTextView 标记(如果使用API <26)。
我遇到了这个问题,我碰到了上面的链接,做了上面的更改,我的问题得到了解决,希望可以解决您的问题(如果尚未解决)和其他问题。
更新:
正如 RobCo 所评论的那样,如果可以更改为 AppCompatActivity ,则不需要上述更改。这里提到:https://developer.android.com/reference/android/support/v7/widget/AppCompatTextView