18

私はアンドロイドアプリで働いています。ユーザーが Google マップでレストランを検索します。Google マップで、彼の隣人のすべてのレストランのマーカーを表示します。マーカーをタップすると、カスタム InfoWindow が表示されます。私の問題は、Google プレイスから返される画像を読み込めないことです。画像のURLを正しく取得していますが、ウィンドウに表示できません。

情報ウィンドウ

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/bg_color" >

<ImageView
        android:id="@+id/place_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:focusable="false"" />

<TextView
    android:id="@+id/place_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/place_vicinity"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<LinearLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:background="@color/bg_color" >

    <RatingBar
         android:id="@+id/place_rating"
         style="?android:attr/ratingBarStyleSmall"
         android:numStars="5"
         android:rating="0"
         android:isIndicator="false"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dip" />

    <ImageView
        android:id="@+id/navigate_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:focusable="false"
        android:src="@drawable/navigate" />

</LinearLayout>

作成時に私はこれを持っています

mGoogleMap.setInfoWindowAdapter(new InfoWindowAdapter() {

            // Use default InfoWindow frame
            @Override
            public View getInfoWindow(Marker arg0) {
                return null;
            }

            // Defines the contents of the InfoWindow
            @Override
            public View getInfoContents(Marker arg0) {

                // Getting view from the layout file info_window_layout
                View v = getLayoutInflater().inflate(R.layout.info_window_layout, null);

                // Getting the snippet from the marker
                String snippet = arg0.getSnippet();

                // Getting the snippet from the marker
                String titlestr = arg0.getTitle();

                String cutchar1= "%#";
                String cutchar2= "%##";
                String ratingstr = snippet.substring(0,snippet.indexOf( cutchar1 ));
                String vicinitystr = snippet.substring(snippet.indexOf( cutchar1 )+2, snippet.indexOf( cutchar2 ) );
                String iconurl= snippet.substring(snippet.indexOf( cutchar2 )+3);

                // Getting reference to the TextView to set latitude
                TextView title = (TextView) v.findViewById(R.id.place_title);

                TextView vicinity = (TextView) v.findViewById(R.id.place_vicinity);

                ImageView image = (ImageView) v.findViewById(R.id.navigate_icon);

                // Setting the latitude
                title.setText(titlestr);

                // declare RatingBar object
                RatingBar rating=(RatingBar) v.findViewById(R.id.place_rating);// create RatingBar object
                if( !(ratingstr.equals("null")) ){
                    rating.setRating(Float.parseFloat(ratingstr));
                }
                vicinity.setText(vicinitystr);                  

                final DownloadImageTask download = new DownloadImageTask((ImageView) v.findViewById(R.id.place_icon) ,arg0);
                download.execute(iconurl);
                // Returning the view containing InfoWindow contents
                return v;

            }

});

DownloadImage コードは次のとおりです。

private class DownloadImageTask extends AsyncTask<String, Void, Bitmap> {
      ImageView bmImage;
      Marker marker;
      boolean refresh;

      public DownloadImageTask(final ImageView bmImage, final Marker marker) {
          this.bmImage = bmImage;
          this.marker=marker;
          this.refresh=false;
      }

     public void SetRefresh(boolean refresh ){
         this.refresh=true;

     }

    /*  @Override
      protected void onPreExecute() 
      {
          super.onPreExecute();
          bmImage.setImageBitmap(null);
      }*/

      @Override
      protected Bitmap doInBackground(String... urls) {
          String urldisplay = urls[0];
          Bitmap mIcon11 = null;
          try {
            InputStream in = new java.net.URL(urldisplay).openStream();
            mIcon11 = BitmapFactory.decodeStream(in);
          } catch (Exception e) {
              Log.e("Error", e.getMessage());
              e.printStackTrace();
          }
          return mIcon11;
      }
      @Override
      protected void onPostExecute(Bitmap result) {
          if(!refresh){
              SetRefresh(refresh);
              bmImage.setImageBitmap(result);
              marker.showInfoWindow();
          }
      }
    }

最後に、コードを実行してマーカーをタップすると、getInfoContents の実行が停止せず、アイコンが表示されません。

なぜこれが起こるのですか?

4

4 に答える 4

38

私は同様のアプリを構築しています。

まず、ダウンロードした画像が InfoWindowに表示されないのMapFragmentは、 がビューを にレンダリングしてから描画するためCanvasです。情報ウィンドウに表示されるのは、作成したビューではなく、それらの「画像」または「スクリーンショット」です。基本的showInfoWindow()に、オブジェクトを再度呼び出す必要があります。これMarkerにより、が再レンダリングされCanvas、画像が表示されるようになります。

ただし、そうは言っても、私の経験ではBitmap、URL から をロードしてから設定するのは最善の解決策ではありません。Android は s をうまく処理できませんBitmap。いくつかのビットマップをロードした後OutOfMemoryError、システム メモリの量に応じて例外が発生するのは時間の問題です。

Picasso ライブラリを使用することをお勧めします。これは、非同期ダウンロードとキャッシュ (メモリとディスク内) を処理し、実際の画像を 1 行だけ読み込むようにします ( Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);)。(詳細はhttp://square.github.io/picasso/を参照)

彼が言ったように、「遅延」は私の好みには少し魔法的すぎるということを除いて、前の答えは良かったです。Picasso にはコールバックを使用するオプションがあり、それを使用することをお勧めします (私はアプリで使用しています)。

最初に、Picasso のインターフェイスを実装するクラス (アクティビティの内部にある可能性があります) を作成し、コンストラクターCallbackで を受け取ります (そのため、そのマーカーを再度Marker呼び出すことができます。showInfoWindow()

private class InfoWindowRefresher implements Callback {
   private Marker markerToRefresh;

   private InfoWindowRefresher(Marker markerToRefresh) {
        this.markerToRefresh = markerToRefresh;
    }

    @Override
    public void onSuccess() {
        markerToRefresh.showInfoWindow();
    }

    @Override
    public void onError() {}
}

情報ウィンドウは次のようになります。

mMap.setInfoWindowAdapter(new GoogleMap.InfoWindowAdapter() {
    @Override
    public View getInfoWindow(Marker marker) {
        // inflate view window

        // set other views content

        // set image view like this:
        if (not_first_time_showing_info_window) {
            Picasso.with(ActivityClass.this).load(restaurantPictureURL).into(imgInfoWindowPicture);
        } else { // if it's the first time, load the image with the callback set
            not_first_time_showing_info_window=true;
            Picasso.with(ActivityClass.this).load(restaurantPictureURL).into(imgInfoWindowPicture,new InfoWindowRefresher(marker));
        }

        return v;
    }

    @Override
    public View getInfoContents(Marker marker) {
        return null;
    }
});

ご覧のとおり、コールバックは非常に単純です。ただし、このメソッドを使用する場合は、最初の呼び出しでのみコールバックを使用し、後続の呼び出しでは使用しないように注意not_first_time_showing_info_windowする必要があります (アイデアを反映するためにコールバックを入れただけです...プログラム ロジック. そうしないと、Picasso コールバックが呼び出さshowInfoWindow()れ、それがコールバックを再呼び出ししますshowInfoWindow()

主なことは、コールバックを使用して Picasso ロードを 1 回だけ実行し、その後の呼び出しではコールバックなしで実行することです。

于 2014-02-26T14:05:36.163 に答える
11

黒魔術を使用してこの問題を解決しました(別名、遅延の設定)。Picasso のキャッシングを利用して、最初の読み込みが開始されてから数ミリ秒後に showInfoWindow を呼び出しました。

これが私の CustomWindowAdapter です。

class CustomWindowAdapter implements InfoWindowAdapter{
   LayoutInflater mInflater;
   Map<Marker, String> imageStringMapMarker;
   Context context;

   public CustomWindowAdapter(LayoutInflater i,  Map<Marker, String> imageStringMapMarker2, Context context ){
      mInflater = i;
      imageStringMapMarker = imageStringMapMarker2;
   }

   @Override
   public View getInfoContents(final Marker marker) {

      View v = mInflater.inflate(R.layout.custom_info_window, null);

      ImageView ivThumbnail = (ImageView) v.findViewById(R.id.ivThumbnail);
      String urlImage = imageStringMapMarker.get(marker).toString();
      Picasso.with(context).load(Uri.parse(urlImage)).resize(250,250).into(ivThumbnail);

      return v;

   }

   @Override
   public View getInfoWindow(Marker marker) {
    // TODO Auto-generated method stub
     return null;
   }
}

そして、遅延を実装するメイン アクティビティで情報ウィンドウを呼び出す方法を次に示します。

myMap.setInfoWindowAdapter(new CustomWindowAdapter(this.getLayoutInflater(),
imageStringMapMarker, getApplicationContext()));
myMap.setOnMarkerClickListener(new OnMarkerClickListener() {

    @Override
    public boolean onMarkerClick(final Marker mark) {


    mark.showInfoWindow();

        final Handler handler = new Handler();
        handler.postDelayed(new Runnable() {
            @Override
            public void run() {
                mark.showInfoWindow();

            }
        }, 200);

        return true;
    }
});
于 2014-02-25T09:17:27.977 に答える
1

@Daniel Grayの回答も参照して、これを行います。

if (userImg.getDrawable() == null) {
  Picasso.with(ctx).load(UtilitiesApp.urlServer + user.getImgUrl())
      .error(R.drawable.logo)
      .into(userImg, new InfoWindowRefresher(marker));
} else {
  Picasso.with(ctx).load(UtilitiesApp.urlServer + user.getImgUrl())
      .error(R.drawable.logo)
      .into(userImg);
}


public class InfoWindowRefresher implements Callback {
  private Marker markerToRefresh;

  public InfoWindowRefresher(Marker markerToRefresh) {
    this.markerToRefresh = markerToRefresh;
  }

  @Override
  public void onSuccess() {
    markerToRefresh.showInfoWindow();
  }

  @Override
  public void onError() {}
}
于 2016-07-14T20:51:10.747 に答える