如何使LinearLayout(或任何其他布局)在右侧堆叠子项

时间:2012-12-12 16:00:53

标签: android android-layout android-linearlayout

我在运行时向LinearLayout添加了一个新视图。我希望它们能够叠加在布局的右侧。

在图片时钟图标上堆叠在左侧,所以它与我想要的相反。是否有可能使它们堆叠在高位LinearLayout的右侧? (它可以是任何其他布局,如果它给出我想要的东西,不仅仅是线性的)

enter image description here

1 个答案:

答案 0 :(得分:0)

这样的东西?

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="right"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true" >

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>

蓝线是选择的线性布局:

The blue line is the linear layout selected