如果将LinearLayout指定为wrap_content(如果超过特定宽度),则如何指定它

时间:2010-05-27 02:20:34

标签: android

我想布局一个ImageView,然后按一个LinearLayout(在它右边)。

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <ImageView android:id="@+id/icon" android:layout_width="20px"
        android:layout_height="20px" />
    <RelativeLayout android:id="@+id/side" android:layout_width="fill_parent" android:layout_weight="1" android:layout_width="????"> 
          // some children here
     </RelativeLayout>
 </LinearLayout>

如何配置我的侧面板,以便在高度为&gt;时使用'wrap_content'。比图像视图?如果没有,请使用图像的高度,即20px?

1 个答案:

答案 0 :(得分:1)

我认为您应该能够使用wrap_content然后使用android:minHeightAPI reference)参数来确保该元素至少为20px。