【发布时间】:2014-04-09 15:13:57
【问题描述】:
我正在尝试查找有关 UI 组件行为的文档或指南,其中 layout_width/layout_height 设置为 match_parent,位于 wrap_content 的 layout_width/layout_height 的 ViewHolder 中。
例如,以下布局的预期结果是什么?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
/>
</RelativeLayout>
【问题讨论】: