在背景中使用 .9.png 图像

发布于 2024-12-08 10:28:12 字数 1160 浏览 0 评论 0原文

我按照本教程 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.enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧伤还要旧人安 2024-12-15 10:28:12

很难在屏幕截图中看到名称,但看起来您的图像名称不是 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文