Android 表格 UI 元素

发布于 2024-11-16 06:23:44 字数 270 浏览 3 评论 0原文

这是更面向设计的,但我试图弄清楚是否有一个 UI 元素可以用于此目的,或者它是否是他们使用的图形图像。

http://s2.postimage.org/8wpons46m/whmcs.png

我正在查看主体区域,其中显示由线条分隔的圆形容器。我刚刚开始开发我的第一个 Android 应用程序,但还没有找到任何类似的东西。

谢谢!

This is more design oriented but I am trying to figure out if there is a UI element I could use for this or if it is a graphical image they used.

http://s2.postimage.org/8wpons46m/whmcs.png

I am looking at the body area where it shows the rounded containers seperated out by lines. I just started working on my first Android app but haven't been able to find anything that looks like that.

Thanks!

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

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

发布评论

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

评论(1

二手情话 2024-11-23 06:23:44

这看起来像一个以形状为背景的列表视图:

<ListView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp" 
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp" 
        android:layout_marginBottom="30dp"
        android:padding="3dp" 
        android:id="@android:id/list"
        android:background="@drawable/shape_background_rounded_rectangle"/>

可绘制的代码可能有点像:

<?xml version="1.0" encoding="utf-8"?>

<solid 
    android:color="@color/color_white" />
<corners 
    android:radius="7dip" />

This looks like a list view with a shape as backgound :

<ListView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp" 
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp" 
        android:layout_marginBottom="30dp"
        android:padding="3dp" 
        android:id="@android:id/list"
        android:background="@drawable/shape_background_rounded_rectangle"/>

And the code for the drawable can be somewhat like:

<?xml version="1.0" encoding="utf-8"?>

<solid 
    android:color="@color/color_white" />
<corners 
    android:radius="7dip" />

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