Android で https URL から画像を読み込めませんでした。以下はコードです。
imgView = (ImageView) findViewById(R.id.ImageView01);
//imgView.setImageResource(R.drawable.scan);
URL url = new URL("https://idw.ideaservices.net/files/11258/272.jpg");
InputStream content = (InputStream)url.getContent();
Drawable d = Drawable.createFromStream(content , "src");
imgView.setImageDrawable(d);
以下はレイアウトのxmlです
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000" >
<ImageView
android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:adjustViewBounds="true"
android:scaleType="fitCenter" />
</RelativeLayout>
flickr の https URL からの他の画像は読み込まれますが、指定した画像は読み込まれません。それを機能させるための指針は、私たちを大いに助けてくれます。