タイトルの通り、Webサイトからダウンロードした画像をAndroid画面に表示する方法を探しています。
検索してもリソースファイルとしてあらかじめ用意した画像を表示するものばかりで、URLを指定して表示するものはXMLファイルにImage要素を記述する方法しかありませんでした。しかし私の環境ではImageViewは利用できるのですが、Image要素は利用できないようです。
現在は以下のようにしています。
XML
1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:orientation="vertical" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent"> 5 <LinearLayout 6 android:orientation="vertical" 7 android:minWidth="25px" 8 android:minHeight="25px" 9 android:layout_width="match_parent" 10 android:layout_height="match_parent" 11 android:id="@+id/linearLayout1"> 12 13 14 <TextView 15 android:text="Large Text" 16 android:textAppearance="?android:attr/textAppearanceLarge" 17 android:layout_width="match_parent" 18 android:layout_height="wrap_content" 19 android:minWidth="25px" 20 android:minHeight="25px" 21 android:id="@+id/textView1" /> 22 <Button 23 android:text="Button" 24 android:layout_width="match_parent" 25 android:layout_height="wrap_content" 26 android:id="@+id/button1" 27 /> 28 <ImageView 29 android:src="@android:drawable/ic_menu_add" 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:id="@+id/imageView1" 33 android:contentDescription="description" /> 34 35<!-- 下のIMAGE要素はエラーになる --> 36 <Image 37 android:layout_width="match_parent" 38 android:layout_height="wrap_content" 39 android:Source="https://i2.wp.com/oxamarin.com/wp-content/uploads/2016/12/りんちゃん.jpg" 40 /> 41 42 </LinearLayout> 43 44</LinearLayout> 45
C#
1Android.Widget.ImageView pic; 2pic = FindViewById<ImageView>(Resource.Id.imageView1); 3 4var path = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal); 5 6//ダウンロード 7WebClient client = new WebClient(); 8client.DownloadFileAsync(new Uri("画像URL"), path + "/pic.png"); 9 10//ダウンロードした画像を表示 11Android.Net.Uri andrUri = Android.Net.Uri.Parse(path + "/pic.png"); 12pic.SetImageURI(andrUri);//表示できない 13
環境
VisualStudio2019
Pixel 2 pie 9.0 Android9.0-API28 Emulator
どうすれば画面に画像を表示できるでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。