我有4个水平放置在LinearLayout中的ImageView。我需要两件事:
有什么想法吗? 谢谢!
答案 0 :(得分:4)
您可以尝试weightSum
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="4">
<!-- Put your imageViews here and set android:layout_weight="1" each -->
</LinearLayout>
您还可以设置minHeight和minWidth
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="20dp"
android:minWidth="20dp"
></LinearLayout>