Xamarin Android FFImageLoading ImageService.Instance.LoadUrl() System.NullReferenceException
Xamarin Android FFImageLoading ImageService.Instance.LoadUrl() System.NullReferenceException
FFImageLoading 我遇到了一个奇怪的问题。编译器没有显示任何错误,但是当应用程序在设备上启动时,抛出异常:
System.NullReferenceException.
代码:
C#
private void setUserImage()
{
ImageService.Instance.Initialize();
imgThunbailUsername = FindViewById<ImageViewAsync>(Resource.Id.imgDisplay);
string url = @"https://lh4.googleusercontent.com/-Lfgi-xEMwuk/VNWoy8EDWcI/AAAAAAAAACk/rwsluNfhSZY/w1486-h832-no/photo.jpg";
ImageService.Instance.LoadUrl(url)
.Retry(3, 200)
.DownSample(60, 60)
.Into(imgThunbailUsername); // compiler points here with an exception
}
XML
<FFImageLoading.Views.ImageViewAsync
android:id="@+id/imgDisplay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter" />
如果有任何提示、想法,甚至是 Xamarin 中图像的另一个好工具,我将不胜感激。
好的,我发现出了什么问题。 XML下面不直接在ViewModel下。
<FFImageLoading.Views.ImageViewAsync
android:id="@+id/imgDisplay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter" />
XML那边叫里面
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
android:id="@+id/nav_view"
app:headerLayout="@layout/drawer_header" <!-- here -->
app:menu="@menu/navmenu" />
</android.support.v4.widget.DrawerLayout>
所以在这种情况下我必须调用正确的视图:
View headerLayout = navigationView.InflateHeaderView(Resource.Layout.drawer_header);
等等使用FindViewById
像这样:
imgThunbailUsername = headerLayout.FindViewById<ImageViewAsync>(Resource.Id.imgDisplay);
所以我需要做的就是得到一个 View headerlayout
和 InflateHeaderView
。
FFImageLoading 我遇到了一个奇怪的问题。编译器没有显示任何错误,但是当应用程序在设备上启动时,抛出异常: System.NullReferenceException.
代码:
C#
private void setUserImage()
{
ImageService.Instance.Initialize();
imgThunbailUsername = FindViewById<ImageViewAsync>(Resource.Id.imgDisplay);
string url = @"https://lh4.googleusercontent.com/-Lfgi-xEMwuk/VNWoy8EDWcI/AAAAAAAAACk/rwsluNfhSZY/w1486-h832-no/photo.jpg";
ImageService.Instance.LoadUrl(url)
.Retry(3, 200)
.DownSample(60, 60)
.Into(imgThunbailUsername); // compiler points here with an exception
}
XML
<FFImageLoading.Views.ImageViewAsync
android:id="@+id/imgDisplay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter" />
如果有任何提示、想法,甚至是 Xamarin 中图像的另一个好工具,我将不胜感激。
好的,我发现出了什么问题。 XML下面不直接在ViewModel下。
<FFImageLoading.Views.ImageViewAsync
android:id="@+id/imgDisplay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter" />
XML那边叫里面
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
android:id="@+id/nav_view"
app:headerLayout="@layout/drawer_header" <!-- here -->
app:menu="@menu/navmenu" />
</android.support.v4.widget.DrawerLayout>
所以在这种情况下我必须调用正确的视图:
View headerLayout = navigationView.InflateHeaderView(Resource.Layout.drawer_header);
等等使用FindViewById
像这样:
imgThunbailUsername = headerLayout.FindViewById<ImageViewAsync>(Resource.Id.imgDisplay);
所以我需要做的就是得到一个 View headerlayout
和 InflateHeaderView
。