2017-04-26 12 views
1

イムをアップグレードした後に動作していませんデバイスのどちらの場合もImageViewのはsetImageBitmap/setImageDrawable次のコードを使用してライブラリ

結果は同じです。 my imageview drawable after setImage in debugger (ViewBitmapを押した後、私は正しい画像を参照)

私はライブラリのバージョンをアップグレードする前に、すべてがうまく働きました。

私が使用:

compile 'com.android.support:appcompat-v7:23.4.0' 
compile 'com.android.support:support-v4:23.4.0' 
compile 'com.android.support:design:23.4.0' 

は現在使用してイム:

compile 'com.android.support:appcompat-v7:25.3.0' 
compile 'com.android.support:support-v4:25.3.0' 
compile 'com.android.support:design:25.3.0' 

任意のアイデア?ありがとう!

答えて

0

はこれを試してみてください。

new AsyncTask<Bitmap, Bitmap, Bitmap>() { 
      @Override 
      protected Bitmap doInBackground(Bitmap... params) { 
       try { 

       URL url = new URL("https://static.pexels.com/photos/3247/nature-forest-industry-rails.jpg"); 
       Bitmap image = BitmapFactory.decodeStream(url.openConnection().getInputStream()); 
        return image; 
      } catch(IOException e) { 
       System.out.println(e); 
      } 
       return null; 
      } 

      @Override 
      protected void onPostExecute(Bitmap bitmap) { 
       super.onPostExecute(bitmap); 
      } 
     }.execute(); 
+0

あなたの答えを読んだ後、私はあなたが、結果は同じ、画像はまだ表示されないで行ったようにバックグラウンドスレッドでデコードを実行しようとしました。デコードはファイルからであり、URLからではないことに注意してください。私は質問を編集して、もっと明確になるでしょう。 – Shemer

関連する問題