<FFImageLoading.Views.ImageViewAsync
android:id="@+id/imgThumbail"
android:layout_height="500dp"
android:layout_width="500dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:layout_gravity="center_vertical" />
答案 0 :(得分:2)
更改属性
android:layout_height="500dp"
android:layout_width="500dp"
到
android:layout_height="match_parent"
android:layout_width="match_parent"
或
android:layout_height="fill_parent"
android:layout_width="fill_parent"
API级别= 8,低于8
答案 1 :(得分:1)
将您的500dp
更改为fill_parent
(或wrap_content
)
wrap_content
该组件只想显示足够大的内容以包含其内容。
fill_parent
组件想要显示与其父组件一样大的组件,并填写剩余的空格。
注意:fill_parent
在API级别8中已重命名为 match_parent