0

我最近一直在做布局。显示了两个图像。第一个显示我需要什么,第二个显示我得到什么。

在此处输入图像描述

任何人都可以建议我如何使用LinearLayout来实现这一点。当我说 LinearLayout 时,这意味着不需要使用 layout_weight 或 RelativeLayout。我知道使用这两个会简化我的工作,但我想知道为什么通过我的代码它没有实现。下面是我的 XML 代码。

   <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
    <Button
        android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button" />
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/mytext" />

    <ImageButton
        android:id="@+id/ib"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="right|center_vertical"
        android:src="@android:drawable/ic_lock_idle_alarm"
        android:contentDescription="@+id/ibutton" />

</LinearLayout>
4

2 回答 2

0

我通过在我想要在父级左侧的视图和我想要在右侧的视图之间添加一个带有 layout_weight="1" 和 layout_width="0dp" 的虚拟视图来做到这一点。假设其他视图没有权重,这将扩展以填充空间。粗鲁但有效。

于 2013-05-14T14:22:29.567 回答
0

在我看来,仅使用一个LinearLayout. 你能提到你不想使用的具体原因RelativeLayout吗?这样的布局可以很容易地使用 single RelativeLayout. 对于限制您使用RelativeLayout/layout_weight.

于 2013-05-14T12:17:17.690 回答