0

我使用列表视图。但我想设置列表视图项的 x 和 y 位置。例如:我想像下面这样绘制图像。可能吗?如果是,请给我任何想法,如果不是,请给我其他建议。

 ---------------------
|                     | 
|  |start point       |   
|                     |
|---------------------|
|                     |
|      |start point   | 
|                     |  
----------------------
4

2 回答 2

2
  • 创建自定义 ArrayAdapter
  • 覆盖 ArrayAdapter 的 getView
  • 在 getView 中创建您的行布局或使用来自 xml 布局资源的行布局
  • 对于行布局,您不能(容易)使用 x 和 y。您可以使用 android:layout_margin 或类似的东西进行定位

欲了解更多信息,这里有一个教程: http ://www.vogella.com/articles/AndroidListView/article.html

于 2012-09-20T13:11:24.553 回答
1

在您的客户适配器中,在 getView 方法上,根据您的条件为原始布局设置 X 边距或填充。

于 2012-09-20T13:05:31.140 回答