我试图在layout_content的layout_width / layout_height的ViewHolder中找到关于UI组件行为的文档或指南,其中layout_width / layout_height设置为match_parent。
例如,以下布局的EXPECTED结果是什么?
<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>
答案 0 :(得分:0)
根据说明here,您的示例的布局将取决于您放置在LinearLayout中的内容。该内容将扩展以填充父RelativeLayout中的所有可用垂直空间。默认情况下,LinearLayout将位于父RelativeLayout
的左上角