#####サーバーからダウンロードで画像を表示させたいです。
指定のURLを表示させるアプリを作成しています。
エラーもなく、エミュレーター上では問題なく表示されるのですが、
Android端末(OPPO_R17_Neo)(Android_9)にコピーすると表示されなくなってしまいます。
端末の問題なのか、コードの問題なのか、原因が分からず困っています。
該当のソースコード
xml
1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.example.picasso_test"> 3 4 <uses-permission android:name="android.permission.INTERNET" /> 5 6 <application 7 android:allowBackup="true" 8 android:icon="@mipmap/ic_launcher" 9 android:label="@string/app_name" 10 android:roundIcon="@mipmap/ic_launcher_round" 11 android:supportsRtl="true" 12 android:theme="@style/AppTheme"> 13 <activity android:name=".MainActivity"> 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN" /> 16 17 <category android:name="android.intent.category.LAUNCHER" /> 18 </intent-filter> 19 </activity> 20 </application> 21 22</manifest>
java
1public class MainActivity extends Activity { 2 3 @Override 4 protected void onCreate(Bundle savedInstanceState) { 5 super.onCreate(savedInstanceState); 6 setContentView(R.layout.activity_main); 7 8 ImageView imageView = findViewById(R.id.image_view); 9 10 Picasso.get() 11 .load("http://i.imgur.com/DvpvklR.png") 12 .fit() 13 .centerInside() 14 .into(imageView); 15 } 16}
試したこと
picassoの問題かと思い、drawableからpicassoで読み込んでみましたが、
問題なく端末でも表示できました。
回答1件
あなたの回答
tips
プレビュー