与 android:layout_align* 对一起使用的最佳 width/height 是多少?
What is the optimal width/height to use with pairs of android:layout_align*?
假设我有:
<View
android:layout_alignTop="@id/someOtherView"
android:layout_alignBottom="@id/someOtherView" />
为了避免错误(RuntimeException 如果之前没有检查),我需要指定 android:layout_height
.
什么值更可取?无论如何它都会被覆盖,但可能存在一些性能问题,例如导致 0dip
/px
偏爱 LinearLayout
有体重的儿童。
所以 - 0dip
、1px
、fill_parent
(我坚信这是一个比 match_parent
更合适的名称),或者 wrap_content
?
您可以使用layout_height="0dp"
假设我有:
<View
android:layout_alignTop="@id/someOtherView"
android:layout_alignBottom="@id/someOtherView" />
为了避免错误(RuntimeException 如果之前没有检查),我需要指定 android:layout_height
.
什么值更可取?无论如何它都会被覆盖,但可能存在一些性能问题,例如导致 0dip
/px
偏爱 LinearLayout
有体重的儿童。
所以 - 0dip
、1px
、fill_parent
(我坚信这是一个比 match_parent
更合适的名称),或者 wrap_content
?
您可以使用layout_height="0dp"