-1

我有一些布局问题,不知道如何解决。

这是我的布局(以RelativeLayout 排列):http: //goo.gl/GxFTq

可见的黑线是在我的 xml 中创建的

<View android:background="#000000"
      android:layout_width = "fill_parent"
      android:layout_below="@+id/lblCaption"
      android:id="@+id/view0"
      android:layout_centerHorizontal="true"
      android:layout_height="2dp"/>

我用 gimp 添加了红线和绿线来描述我的问题。右侧的水平线应位于显示器顶部的垂直线和底部的中间。它应该像

android:layout_centerHorizontal="true" + distance between the top of the display to vertical line on top

(见我照片上的绿线)

有小费吗?(xml 或编程方式的可能解决方案 - 没关系)

4

1 回答 1

1

试试这个新代码

<View
android:id="@+id/view0"
android:layout_width="2dp"
android:layout_height="50dp"
android:layout_below="@+id/lblCaption"
android:background="#000000" />
于 2012-11-16T12:51:54.513 回答