在activity_main.xml 中有两行代码android:background="@drawable/border_ui"
和android:background="@drawable/my",
但一个使用位于文件夹 res\drawable 的border_ui.xml,另一个使用位于文件夹 res\values 的文件 drawable.xml。
有什么不同?谢谢!
此外,如果我将文件 drawable.xml 删除到文件夹 res\drawable 并将其重命名为 my.xml,则会发生错误。
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:background="@drawable/border_ui"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
android:background="@drawable/my"
/>
</RelativeLayout>
边框_ui.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<stroke android:width="1dp" android:color="#000000" />
<solid android:color="#ffffff" />
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" />
</shape>
可绘制的.xml
<resources>
<drawable name="my">#f00</drawable>
</resources>