AlertDialog
の画像があるレイアウトを開こうとしています。しかし、空白のダイアログが表示されています。ここに私のコードです。AlertDialogが空白になっています
ImageView.axml
レイアウト:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="350dp"
android:id="@+id/imageView"
android:src="@drawable/Apple"
android:scaleType="centerInside" />
</LinearLayout>
C#コード:this tutorialによれば
AlertDialog.Builder builder = new AlertDialog.Builder(this);
AlertDialog dialog = builder.Create();
LayoutInflater inflater = LayoutInflater.From(this);
View dialogLayout = inflater.Inflate(Resource.Layout.ImageView, null);
dialog.SetView(dialogLayout);
dialog.Show();
小さいイメージファイル名はすべて小文字でしたか?もしそうなら、 "apple.png"を "apple.png"にリネームして(それに応じて "src ="エントリーを更新する)、drawableリソースファイル名が小文字になるようにしてください。そうでなければ、 GetIdentifier()はゼロを返します)。その提案で私の答えを更新しました。 –