我在运行时向我的 LinearLayout 添加了一个新视图。我希望它们堆叠在布局的右侧。
图片时钟图标堆叠在左侧,因此与我想要的相反。是否可以将它们堆叠在 higlited LinearLayout 的右侧?(它可以是任何其他布局,而不仅仅是线性,如果它给出了我想要的)
我在运行时向我的 LinearLayout 添加了一个新视图。我希望它们堆叠在布局的右侧。
图片时钟图标堆叠在左侧,因此与我想要的相反。是否可以将它们堆叠在 higlited LinearLayout 的右侧?(它可以是任何其他布局,而不仅仅是线性,如果它给出了我想要的)
像这样的东西?
<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>
蓝线是选择的线性布局: