<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="TextViewAppearance" parent="@android:style/TextAppearance.Widget.TextView">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="typeface">robotoRegular</item>
</style>
<style name="TextViewAppearance.Display1" parent="@style/TextViewAppearance">
<item name="typeface">robotoBlack</item>
<item name="android:textSize">45sp</item>
<item name="android:textColor">@color/main_color_grey_500</item>
</style>
</resources>
四处错误: 错误:(4,5)没有资源发现在给定名称匹配:ATTR“字样”。错误:未发现的资源与给定名称匹配:ATTR“字样”
我使用
1. Android Studio中1.5.1
2的minSdkVersion 15
3. targetSdkVersion 23
< -----------编辑--- ------------------>
我的布局文件是
<abcapp.com.font.RobotoTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="ABC"
android:textSize="16sp"
app:typeface="robotoBlack" />
我在xml布局文件中使用了“app:typeface”。我刚刚在我的问题中添加了xml布局文件代码 – Ali
@smoke http://stackoverflow.com/questions/2973270/using-a-custom-typeface-in-android –