如何在xamarin android上填满全屏图像?

时间:2016-04-29 02:16:51

标签: xamarin xamarin.android

 <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" />

enter image description here 我不想设置500dp的宽度,500dp的高度。 我想设置全屏图像如上图所示。

2 个答案:

答案 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