2

サーフェスビューで移動するアイコンを重ねることについて誰か考えがありますか? Windows のカーソルのようなものですが、Android アプリで必要です。

私は相対的な ImageView を使用してそのスポットを変更し続けようとしましたが、メイン スレッドは ANR になります。次に、キャンバスに追加しようとしましたが、画面をクリアできないため、アイコンが移動するとゴーストが発生します。画面をクリアすると、ビュー全体が黒くなります。

誰もこの種の機能の経験がありますか?


解決済み

カーソルと背景の色が混在するように修正したので、別の ImageView は必要ありません。

4

1 に答える 1

3

xml レイアウトで、surfaceView を FrameLayout で囲みます。次に、アイコンを同じ FrameLayout に追加します。それらがサーフェス ビューの下に配置されていることを確認して、サーフェス ビューの上に描画されるようにします。

<FrameLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent">
        <SurfaceView android:id="@+id/surfaceView1" android:layout_width="wrap_content" android:layout_height="wrap_content"></SurfaceView>
        <LinearLayout android:id="@+id/linearLayout1" android:layout_width="wrap_content" android:layout_height="wrap_content">
            <Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
            <Button android:text="Button" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
        </LinearLayout>
    </FrameLayout>

ボタンをアイコンや画像に置き換えてみてください..

于 2013-09-05T02:33:56.190 に答える