8

在 Android 中,样式属性不使用 android: 命名空间前缀的原因是什么?

看看怎么style不开头android:?有谁知道为什么?

<TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="I Love Android!"
        style="@android:style/TextAppearance.Large"
        />

http://developer.android.com/guide/topics/ui/themes.html

谢谢!

4

1 回答 1

3

文档中:

注意:style 属性不使用 android: 命名空间前缀。

style不使用 android 命名空间前缀的原因是它是现有 XML 属性的一部分。

于 2014-07-03T16:50:50.813 回答