2
ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
/>

或者

     <ImageView
            android:id="@+id/imageView1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
 />
4

2 回答 2

1

两者都是同一件事(在 API 级别 8+ 中)。

fill_parent: 视图应该和它的父级一样大

于 2013-04-10T10:36:43.263 回答
0

这已经在SO上被问过好几次了,这里有一个类似的问题:android中的fill_parent和match_parent之间的区别

自 API 级别 8 起,fill_parent 标记已重命名为 match_parent。

于 2013-09-16T13:08:25.183 回答