我試圖打開一個佈局,其中有一個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#代碼:
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()返回一個零)。我也用這個建議更新了我的答案。 –