3

SurfaceView を箱に入れるのに役立つチュートリアルを見つけるのに苦労しています。正しい方向へのポインタは驚くべきものです - それを通して手を握るのを探しません.

たとえば、画面の上部に領域を割り当ててボタンなどを作成し、残りをサーフェスビューで埋めることができるようにしたいと考えています。ただし、全画面表示の surfaceView で使用したコードを変更して xml を参照しようとすると、すべてが少しうまくいきません。

私の主な活動のコードは次のとおりです (関係ないと思われる多くのビットを削除しました)。

package com.example.mylistviewidea;

import android.os.Bundle;
etc...

public class MainActivity extends Activity implements OnTouchListener {

MyListView myListView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    myListView = (MyListView) findViewById(R.id.surfaceView1);

}

class MyListView extends SurfaceView implements Runnable {
    SurfaceHolder myHolder;
    Thread myThread = null;
    boolean isRunning = false;
    // My Variables
    long dT;
    int myRed;

    public MyListView(Context context) {
        super(context);
        myHolder = getHolder();
    }

    @Override
    public void run() {
        // TODO Auto-generated method stub
        while (isRunning) {

            if (!myHolder.getSurface().isValid())
                continue;
            Canvas canvas = myHolder.lockCanvas();
            canvas.drawARGB(128, 0, 0, 0);
            dT = SystemClock.uptimeMillis();
            myRed = (int) ((int) 128*(1+Math.sin((double) dT/1000)));

        }
    }
}
}

私のXMLは次のとおりです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<SurfaceView
    android:id="@+id/surfaceView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentLeft="true" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="@string/add_entries" />

<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/button1"
    android:text="@string/remove_entries" />

</RelativeLayout>

私が得ているエラーは次のとおりです。

02-08 11:44:17.885: E/AndroidRuntime(10523): java.lang.RuntimeException: Unable 
to start activity ComponentInfo{com.example.mylistviewidea/com.example.mylistviewidea.MainActivity}: 
java.lang.ClassCastException: android.view.SurfaceView cannot be cast to 
com.example.mylistviewidea.MyListView

よろしくお願いします。

乾杯、

マイク

4

2 に答える 2

5

カスタム ビューがあり、それを xml で使用する必要があります。

最初にこのビューを作成します

class MyListView extends SurfaceView implements Runnable {
    SurfaceHolder myHolder;
    Thread myThread = null;
    boolean isRunning = true;
    // My Variables
    long dT;
    int myRed;

    public MyListView(Context context) {
        super(context);
        init();
    }

    public MyListView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

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

    private void init() {
        myHolder = getHolder();
        myHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
    }

    @Override
    public void run() {
        // TODO Auto-generated method stub
        while (isRunning) {

            if (!myHolder.getSurface().isValid())
                continue;
            Canvas canvas = myHolder.lockCanvas();
            canvas.drawARGB(128, 128, 0, 0);
            dT = SystemClock.uptimeMillis();
            myRed = (int) ((int) 128 * (1 + Math.sin((double) dT / 1000)));
            myHolder.unlockCanvasAndPost(canvas);

        }
    }
}

xmlをこれに変更します

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<com.example.testant.MyListView
    android:id="@+id/surfaceView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentLeft="true" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="add_entries" />

<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/button1"
    android:text="remove_entries" />

主な活動を変更する

public class MainActivity extends Activity {

    MyListView myListView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        myListView = (MyListView) findViewById(R.id.surfaceView1); 
        new Thread(myListView).start();

    }
}

キャンバスのロックにもバグがあることに注意してください。ただし、これは正常に機能するはずです。

于 2013-02-08T12:40:15.227 に答える
0

ちょっと些細なことかもしれません。ただし、プロジェクトをクリーンアップしてから再構築してください。または 別の Java クラス ファイルで MyListView を宣言し、それを xml レイアウト ファイルで参照します。

于 2013-02-08T11:50:55.060 に答える