【问题标题】:Android Table UI Elements [duplicate]Android表格UI元素[重复]
【发布时间】:2011-06-20 17:38:56
【问题描述】:

这更注重设计,但我想弄清楚是否有我可以使用的 UI 元素,或者它是否是他们使用的图形图像。

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

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

谢谢!

【问题讨论】:

  • Here 类似问题。
  • 但在这种情况下,真的看起来像一个图像。这些项目未在行上垂直对齐。

标签: android android-layout tablelayout


【解决方案1】:

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

<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"/>

drawable 的代码可能有点像:

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

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

【讨论】:

    猜你喜欢
    • 2014-10-19
    • 2017-07-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-04-05
    • 2018-11-01
    • 2019-11-01
    • 1970-01-01
    相关资源
    最近更新 更多