我想把两个文本视图放在左边,一个按钮放在一个线性布局的右边,这可能吗?
下面是我的代码,我不得不硬编码按钮的左边距,这是不灵活的。是否可以将流向不同方向的子对象进行布局?

<LinearLayout
android:id="@+id/widget43"
android:layout_width="fill_parent"
android:layout_height="100px"
>
<TextView
android:id="@+id/tc_buttom_text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Time elapsed"
>
</TextView>
<TextView
android:id="@+id/tc_buttom_text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="00:00:00 00"
>
</TextView>
<Button
android:id="@+id/tc2_home"
android:layout_width="70px"
android:layout_height="wrap_content"
android:layout_marginLeft="200px"
android:layout_marginRight="10px"
android:text="Home"
android:layout_weight="0.5"
>
</Button>
</LinearLayout>

最佳答案

我想放两个文本视图到
左键,右键
在线性布局中,这是不是
可能吗?
没有一个LinearLayout。您要么需要两个LinearLayouts(一个用于左边两个TextViews的列),要么需要一个相对延迟。
是否可以将
流向不同?
如果“不同方向”是指同时垂直和水平,那么单个LinearLayout只能朝一个方向。使用嵌套LinearLayouts或aRelativeLayout

08-03 21:31