在android中编写样式格式

时间:2013-05-23 07:38:43

标签: android android-layout android-styles

我对将新样式添加到新样式有点困惑。但两者都有效。但我想知道哪一个是正确的第一个或第二个?或者还有其他方式吗?

<style name="customView" parent="viewline">
    <item>....

<style name="customView" parent="@style/viewline">
<item>....

由于

1 个答案:

答案 0 :(得分:0)

正如你所说,两者都是正确的。 在这里使用其中任何一个都没有任何缺点。

<style name="customView" parent="viewline"> 

表示父样式位于同一文件中。并且

<style name="customView" parent="@style/viewline"> 

表示父样式位于样式目录中的某个位置(可能是另一个文件)。而已。