我在res / values / styles.xml中有这个
<style name="ListViewRowBorder" >
<item name="android:width">1dp</item>
<item name="android:color">@color/listview_row_stroke_color</item>
</style>
我可以访问颜色资源。如何在res / drawable / file.xml中访问此样式资源(如下所示) 我在下面尝试的方式似乎不起作用。
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/list_item_dark_background"/>
<stroke style="@style/ListViewRowBorder" />
</shape>
</item>
答案 0 :(得分:0)
我觉得你不能用中风,请看看:
http://developer.android.com/guide/topics/resources/drawable-resource.html#stroke-element
答案 1 :(得分:0)