ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
OR
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
答案 0 :(得分:1)
两者都是一样的(在API级别8 +中)。
fill_parent
:视图应该与其父视图一样大
答案 1 :(得分:0)
之前已经多次询问这个问题,这是一个类似的问题:difference between fill_parent and match_parent in android
自API级别8起,fill_parent标记已重命名为match_parent。