在背景中使用 .9.png 图像
我按照本教程 http://developer 创建了 bg3.9.png 图像
。 android.com/guide/developing/tools/draw9patch.html
但是当我将它放入我的 drable 文件夹并尝试使用它时,它会在项目中出现错误 请查看图片。
main.xml 文件中的代码是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:background="@drawable/bg3">
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:columnWidth="65dp"
android:numColumns="auto_fit" android:verticalSpacing="10dp"
android:horizontalSpacing="10dp" android:stretchMode="columnWidth"
android:gravity="center" android:layout_gravity="center_vertical|center_horizontal"/>
</LinearLayout>
请指导我所做的事情错误的 ?
I have created bg3.9.png image following this tutorial
http://developer.android.com/guide/developing/tools/draw9patch.html
but when i put it in my drable folder and try to use it then it gives error in the project
please see the image.
The code in main.xml file is :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:background="@drawable/bg3">
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:columnWidth="65dp"
android:numColumns="auto_fit" android:verticalSpacing="10dp"
android:horizontalSpacing="10dp" android:stretchMode="columnWidth"
android:gravity="center" android:layout_gravity="center_vertical|center_horizontal"/>
</LinearLayout>
Please guide me on what i have done wrong ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很难在屏幕截图中看到名称,但看起来您的图像名称不是 bg.9.png,它看起来像是一个三个字母的名称(而您的代码引用 @drawable/bg),
它不应该是命名为bg3.9.png,应该命名为bg.9.png
It is difficult to see the name in your screenshot but it doesn't look like your image is named bg.9.png, it looks like it has a three letter name (wheras your code references @drawable/bg)
It should not be named bg3.9.png, it should be named bg.9.png