android:fontFamily在Android Studio中无法识别

时间:2014-06-15 18:13:56

标签: android dialog

我正在尝试在Mac OSX上使用Android Studio在Android开发人员网站(http://developer.android.com/guide/topics/ui/dialogs.html)上实现Dialog教程。一切都很好,除了提示的字体。以下是设计视图中的图片:

enter image description here

我无法在设备上运行它,因为我收到以下错误:

Gradle: No resource identifier found for attribute 'fontFamily' in package 'android'

这是xml代码,与开发人员网站上的相同

<TextView
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:text="ID"
    android:textSize="8pt"
    android:textColor="#000000"
    />
<EditText
    android:id="@+id/username"
    android:inputType="text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="4dp"
    android:layout_marginLeft="4dp"
    android:layout_marginRight="4dp"
    android:layout_marginBottom="4dp"
    android:hint="enter your username"
/>
<TextView
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:text="PIN"
    android:textSize="8pt"
    android:textColor="#000000"/>
<EditText
    android:id="@+id/password"
    android:inputType="textPassword"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="4dp"
    android:layout_marginLeft="4dp"
    android:layout_marginRight="4dp"
    android:layout_marginBottom="16dp"
    android:fontFamily="sans-serif"
    android:hint="enter your password" />

1 个答案:

答案 0 :(得分:0)

在Android中,您应该使用android:typeface="serif"代替。

Android本身只有3种默认字体:

  • 正常(Droid Sans)
  • serif(Droid Serif)
  • monospace(Droid Sans Mono)