我正在用mvvmcross框架在Xamarin中創建一個android應用程序。FFImageloading xamarin android fit to parent
我試圖從服務器向我們的用戶顯示圖片(圖片是Url)。但這些圖片拒絕按比例填充父母。 如何才能實現這些圖像的正確配合? ,我使用寬度標籤上的FillParent。但圖像拒絕縮放到容器的大小。
我的當前設置
<FFImageLoading.Cross.MvxImageLoadingView
android:id="@+id/my_plannymap_listitem_title_picture"
android:layout_width="fill_parent"
android:layout_height="150dp"
local:MvxBind="DataLocationUri ImageUrl; Click OpenDetailCommand" />
上面的代碼創建(抱歉體積的東西),正如你所看到的圖像不補,他們仍然是他們的「原始」大小
其他活動(這裏同樣的問題)
<FFImageLoading.Cross.MvxImageLoadingView
android:layout_width="fill_parent"
android:layout_height="150dp"
android:scaleType="fitCenter"
android:id="@+id/overview_image"
android:background="#580AB0"
local:MvxBind="DataLocationUri ImageUrl"
TransparencyEnabled="false"
DownSampleToFit="true" />
我沒有xamarin的任何經驗,但在原生的Android,我們設置scaleType屬性的來fitxy,所以我想應該有xamarin –
相同的屬性..太感謝你了,不能只見樹木不見森林。 –