如何使用 C# 在 Mono-android 中绘制带边框的表格布局?
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如错误消息所示,您缺少
/shape/android:shape
属性尝试使用它作为 .xml 文件的内容:另请参阅 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:See also the Android Shape Drawable documentation.