在自己的布局中使用Android样式属性

时间:2011-04-12 07:42:04

标签: android android-layout

我想使用这种样式,它是样式属性中的Android Build,但它不会编译。我错过了某种导入?

?android:attr/listItemFirstLineStyle

<TextView
      android:id="@+id/text"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_weight="1" android:layout_gravity="left|center_vertical" style="?android:attr/listItemFirstLineStyle" android:layout_marginLeft="10dip"/>`

THX

2 个答案:

答案 0 :(得分:2)

你试图删除问号吗?

style="android:attr/listItemFirstLineStyle"

答案 1 :(得分:0)

您无法在自己的项目中访问所有内置样式。当你在Eclipse中输入目前为止

style="@android:style/"

并点击ctrl + enter,intellisense应该会概述你可以使用的内容。样式名称中有下划线,用'。'...。

替换它们