-3

ここに画像の説明を入力 Google マップで検索の進行状況を表示するために透明な円が必要です。これにより、1 秒あたりのサイズが大きくなり、検索中にいくつかのマーカーも表示されます。

4

3 に答える 3

1

***ついに私は解決策を得ました。画像を使用してマップ画面に設定し、アニメーションを追加するだけで完璧に機能します。これが私のマップクラスのコードです。progressBar = (ImageView)findViewById(R.id.mapprogressbar);

    RotateAnimation rotateAnimation1 = new RotateAnimation(0, 360,
            Animation.RELATIVE_TO_SELF, 0.5f,
            Animation.RELATIVE_TO_SELF, 0.5f);
    rotateAnimation1.setInterpolator(new LinearInterpolator());
    rotateAnimation1.setDuration(1000);
    rotateAnimation1.setRepeatCount(1000);
    progressBar.startAnimation(rotateAnimation1);

これは私のニーズを満たす**

于 2013-08-07T05:30:49.557 に答える
0

SweepGradient http://developer.android.com/reference/android/graphics/SweepGradient.htmlを使用し、setShader を使用して Canvas に設定し、最後に弧を描きます

于 2013-08-06T11:59:45.127 に答える