3

編集:LogCatを調べたところ、com.example.playgroundを膨らませることができなかったとのことでした。その後、com.game.myapp.Playgroundが必要であることに気づきました。変更してから動作しました。

最近、Androidアプリ(リンク)で重力が機能しない理由を尋ねましたが、それでも問題が発生します。ビューをクラス「Playground」に変更しましたが、強制終了します。私は何が間違っているのですか?

package com.game.myapp;

import android.app.Activity;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.os.Bundle;


public class InGame extends Activity{

Playground v;

private int radius;
    private int xPosition;
    private int yPosition;
    private Paint paint;



    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Rewrite this, it sucks. Seriously.
        super.onCreate(savedInstanceState);
        v = new Playground(this);
        setContentView(v);
    }

    public InGame(int x, int y, int radius, int color)
    { 
        this.xPosition = x; this.yPosition = y; this.radius = radius;
        paint = new Paint(color);
    }

    void moveBall(int x, int y){
         xPosition = x; yPosition =y;        
    } 

    void onDraw(Canvas canvas){
          canvas.drawCircle(xPosition, yPosition, radius, paint);
    }    
}

遊び場クラス:

package com.game.myapp;

import android.content.Context;
import android.graphics.Canvas;
import android.view.View;

public class Playground extends View{

public static InGame ball;

public Playground(Context context) {
    super(context);
    // TODO Auto-generated constructor stub
} 


   @Override
   public void onDraw(Canvas canvas)
   {
       super.onDraw(canvas);
       if (ball != null ){
           ball.onDraw(canvas);
       }
   }

}

LogCatは次のとおりです。

11-04 16:36:33.945: D/dalvikvm(13177): newInstance failed: no <init>()

11-04 16:36:33.949: D/AndroidRuntime(13177): Shutting down VM

11-04 16:36:33.949: W/dalvikvm(13177): threadid=1: thread exiting with uncaught exception (group=0x4001e578)

11-04 16:36:33.953: E/AndroidRuntime(13177): FATAL EXCEPTION: main

11-04 16:36:33.953: E/AndroidRuntime(13177): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.game.myapp/com.game.myapp.InGame}: java.lang.InstantiationException: com.game.myapp.InGame

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1573)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.app.ActivityThread.access$1500(ActivityThread.java:117)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.os.Handler.dispatchMessage(Handler.java:99)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.os.Looper.loop(Looper.java:130)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.app.ActivityThread.main(ActivityThread.java:3687)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at java.lang.reflect.Method.invokeNative(Native Method)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at java.lang.reflect.Method.invoke(Method.java:507)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at dalvik.system.NativeStart.main(Native Method)

11-04 16:36:33.953: E/AndroidRuntime(13177): Caused by: java.lang.InstantiationException: com.game.myapp.InGame

11-04 16:36:33.953: E/AndroidRuntime(13177):    at java.lang.Class.newInstanceImpl(Native Method)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at java.lang.Class.newInstance(Class.java:1409)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.app.Instrumentation.newActivity(Instrumentation.java:1021)

11-04 16:36:33.953: E/AndroidRuntime(13177):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1565)

11-04 16:36:33.953: E/AndroidRuntime(13177):    ... 11 more
4

2 に答える 2

4

これが完全なコードです。私はこれを書いてテストしました。できます。アクティビティにタイマーを追加して、ボールを毎秒10ピクセルずつ上下に動かしました。それを研究し、それから学び、あなたのニーズに適応させてください。

ボールクラス。

package com.example;

import android.graphics.Canvas;
import android.graphics.Paint;

public class Ball{

    private int radius;
    private int xPosition;
    private int yPosition;
    private int color;
    private Paint paint;

    public Ball(int x, int y, int radius, int color)
    {
        this.xPosition = x; this.yPosition = y; this.radius = radius;
        paint = new Paint();
        paint.setColor(color);
    }

    int getX(){return this.xPosition;}
    int getY(){return this.yPosition;}

    void moveBall(int x, int y){
        xPosition = x; yPosition =y;
    }

    void onDraw(Canvas canvas){
        canvas.drawCircle(xPosition, yPosition, radius, paint);
    }

}

遊び場クラス

package com.example;

import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.widget.ImageView;

public class Playground extends ImageView {

    private Ball ball;

    public Playground(Context context) {
        this(context,null);
    }

    public Playground(Context context, AttributeSet attrs) {
        this(context, attrs,0);
    }

    public Playground(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public void setBall(Ball ball){
        this.ball = ball;
    }

    @Override
    public void onDraw(Canvas canvas)
    {
        super.onDraw(canvas);
        if (ball != null ){
            ball.onDraw(canvas);
        }
    }

}

アクティビティクラス

package com.example;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;

import java.util.Timer;
import java.util.TimerTask;

public class MyActivity extends Activity {
    /**
     * Called when the activity is first created.
     */

    Playground playground;
    Ball ball;
    Timer myTimer;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        playground = (Playground) findViewById(R.id.playground);

        ball = new Ball(100, 100, 20, Color.RED);

        playground.setBall(ball);

        myTimer = new Timer();
        myTimer.schedule(new TimerTask() {
            @Override
            public void run() {
                Update();
            }

        }, 0, 1000);
    }

    private void Update() {
        this.runOnUiThread(moveBall);
    }

    private Runnable moveBall = new Runnable() {
        public void run() {
            ball.moveBall(ball.getX() + 10, ball.getY() + 10);
            playground.invalidate();
        }
    };


}

[編集]XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">
    <com.example.Playground
            android:id="@+id/playground"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
</LinearLayout>

OOPの要点。

ボールは遊び場や活動についての知識を持っていません。キャンバスに描画するように要求することによって呼び出される可能性のあるメソッドがありますが、知っている限り、それは非表示のキャンバス、ボタンのキャンバス、またはビットマップのキャンバスである可能性があります。知っておく必要があります。それを心配するのは、メソッドを呼び出すものすべての仕事です。

遊び場には、アクティビティやボールに関する知識がありません。Ballクラスのインスタンスがある可能性があることを認識しており、インスタンスがある場合はonDrawメソッドを呼び出す必要がありますが、ボールが何であるか、または何を描画するかはわかりません。ボールはそれを心配しています。

アクティビティは、ボールまたはプレイグラウンドを認識していませんが、それぞれが1つあり、ボール移動メソッドを呼び出してから、プレイグラウンドに再描画するように指示します。

重要なのは、描画メソッド、移動メソッド、その他すべてを再コーディングせずに変更できるということです(一般的にはOK)。たとえば、BallクラスのonDrawを変更して、長方形を描画できます。もちろん、クラスの名前は今では悪い選択ですが、あなたは考えを理解します...

于 2012-11-05T21:41:26.770 に答える
2

にはデフォルトのコンストラクターがありませんInGame Activity。これは、Androidがインスタンス化できるようにするために必要です。

明示的なコンストラクターが存在すると、暗黙的な引数なしのコンストラクターは定義されません。メンバーをデフォルト値に初期化する独自の引数なしコンストラクターを提供する必要がある場合があります。

明示的なコンストラクターを削除し、初期化をonCreate(Bundle)メソッドに入れます。

于 2012-11-05T20:52:07.110 に答える