<?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 –