-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 に答える