0

私は現在、いくつかの LinearLayouts (いくつかの画像で満たされている) を画面上の絶対位置に配置しようとしています。現在、LinearLayouts は親 RelativeLayout の左上に配置され、マージンを使用して配置されます。これは、リストの最初のものを除くすべての子 LinearLayout に対して適切に機能します。この場合、いくつかの余白を設定しても (たとえば、左余白に 25 dp など)、効果はありません。誰かが同じ問題を抱えていて、何らかのガイダンスを提供できることを願っています。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rl_page"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <LinearLayout android:id="@+id/ll_first" android:layout_height="wrap_content" android:layout_width="wrap_content"
         android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginLeft="25dp" android:layout_marginTop="20dp"></LinearLayout>

    <LinearLayout android:id="@+id/ll_second" android:layout_height="wrap_content" android:layout_width="wrap_content"
         android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginLeft="175dp" android:layout_marginTop="30dp"></LinearLayout>

    <LinearLayout android:id="@+id/ll_third" android:layout_height="wrap_content" android:layout_width="wrap_content"
         android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginLeft="40dp" android:layout_marginTop="140dp"></LinearLayout>

</RelativeLayout>

編集:画像例http://i.stack.imgur.com/HuYjU.jpg

4

1 に答える 1

0

RelativeLayout は、別の View/ViewGroup を基準にして Views/ViewGroups を配置するためのいくつかのタグを提供します。

  • android:layout_below="id"これにより、android:layout_above="id"
    ビューが id を持つ別のビューの下/上に配置されます。

  • android:layout_alignRightOf="id"これにより、android:layout_alignLeftOf="id"
    ビューが id を持つ別のビューの右/左に配置されます。

すべてのタグには、次のような同じ使いやすさがあります。ここでは、android:layout_below="" を使用して View/ViewGroup を別の下に設定します。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rl_page"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <--! YOUR LAYOUT AT THE TOP OF YOUR PARENT -->
    <LinearLayout 
         android:id="@+id/ll_first"
         android:layout_height="wrap_content" 
         android:layout_width="wrap_content"

         android:layout_alignParentLeft="true"
         android:layout_alignParentTop="true"></LinearLayout>

    <LinearLayout android:id="@+id/ll_second"
         android:layout_height="wrap_content" 
         android:layout_width="wrap_content"

         android:layout_below="@id/ll_first" ></LinearLayout>

    <LinearLayout 
         android:id="@+id/ll_third" 
         android:layout_height="wrap_content" 
         android:layout_width="wrap_content"

         android:layout_below="@id/ll_second"></LinearLayout>

</RelativeLayout>

これで、すべてのビューの位置にマージンを使用できるようになりました。

于 2013-09-05T11:25:34.450 に答える