如何使用 C# 在 Mono-android 中绘制带边框的表格布局?

发布于 2024-11-28 23:49:50 字数 498 浏览 0 评论 0原文

如何使用 C# 在 Mono-android 中绘制带边框的表格布局?

形状标签不起作用。我在单独的 .xml 文件中编写了以下代码,但它显示“形状标签未声明”

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <solid android:color="#99FFFFFF"/>
    <corners android:radius="30px"/>
    <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>

How to draw a table layout with borders in Mono-android using C#?

Shape tag not working. I have written following code in a separate .xml file, but it shows " Shape tag is not declared"

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <solid android:color="#99FFFFFF"/>
    <corners android:radius="30px"/>
    <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

熊抱啵儿 2024-12-05 23:49:50

正如错误消息所示,您缺少 /shape/android:shape 属性尝试使用它作为 .xml 文件的内容:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
    <solid android:color="#99FFFFFF"/>
    <corners android:radius="30px"/>
    <padding
            android:left="0dp"
            android:top="0dp"
            android:right="0dp"
            android:bottom="0dp" />    
</shape>

另请参阅 Android Shape Drawable 文档

As the error message says, you're missing the /shape/android:shape attribute Try using this as the contents of your .xml file:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
    <solid android:color="#99FFFFFF"/>
    <corners android:radius="30px"/>
    <padding
            android:left="0dp"
            android:top="0dp"
            android:right="0dp"
            android:bottom="0dp" />    
</shape>

See also the Android Shape Drawable documentation.

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