0

インターネットで答えを徹底的に検索し、さまざまな設定を試しましたが、これを機能させることができません。問題は、何を検索すればよいのか、それを正しく定式化する方法が完全にわからないということです。とにかく、私の問題は次のとおりです。

私のセットアップは次のとおりです。EclipseでAndroid 2.1用に開発しています。

さまざまなレイアウトに onclicklistener を追加したいと考えています。main.xml と ChiOverview.xml の 2 つの異なるレイアウトがあります。main.xml ファイルにボタン (imagebutton1 と imagebutton2) と 4 つのボタン (そのうちの 1 つが ChIdentifierbutton) が必要です。レイアウトが異なる ChIdentifierbutton に対して onclicklistener を作成すると、アプリがクラッシュします。

ここに私の ChIdentifierActivity,java のソースコードがあります:

    package feldballe.FPConsult;

    import android.app.Activity;
    import android.hardware.Camera;
    import android.os.Bundle;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.FrameLayout;
    import android.widget.ImageButton;
    import android.widget.ImageView;
    import android.widget.SeekBar;

    public class ChIdentifierActivity extends Activity {
        /** Called when the activity is first created. */
        ImageButton imageButton;
        ImageButton imageButton2;
        ImageButton imageButton3;
        Preview preview;
        CameraDemo camerademo;
        SeekBar ChIdentifierBar;
        ImageView imageViewChi;

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

        public void addListenerOnButton() {          
            imageButton = (ImageButton) findViewById(R.id.imageButton2);
            imageButton.setOnClickListener(new OnClickListener() {

                public void onClick(View arg0) {
                   setContentView(R.layout.chioverview);
                }
            });

            imageButton2 = (ImageButton) findViewById(R.id.imageButton1);
            imageButton2.setOnClickListener(new OnClickListener() {

                public void onClick(View arg0) {
                   setContentView(R.layout.yuwrong);
                }
            });

            imageButton3 = (ImageButton) findViewById(R.id.ChIdentifierButton);
            imageButton3.setOnClickListener(new OnClickListener() {

                public void onClick(View chioverview) {
                   setContentView(R.layout.yuwrong);
                }
            });     
    }
}

私のmain.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >


    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="46dp"
        android:text="@string/pushChi"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/textView1"
        android:src="@drawable/mainchi" />

    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:layout_alignParentRight="true"
        android:layout_alignTop="@+id/imageButton1"
        android:src="@drawable/realchi" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="@string/weucom"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    </RelativeLayout>

私のchioverview.xml:

   <?xml version="1.0" encoding="utf-8"?>
   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical" >

   <Button
       android:id="@+id/ChiFunfactsButton"
          android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_centerVertical="true"
       android:text="@string/ChiFunfacts" />

   <Button
       android:id="@+id/ChiCalButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ChiFunfactsButton"
        android:text="@string/ChiCalendar" />

    <Button
        android:id="@+id/ChIdentifierButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ChiCalButton"
        android:text="@string/ChIdentifier2" />

    <Button
        android:id="@+id/ChiPhotosButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/ChiFunfactsButton"
        android:text="@string/ChiPhotos" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ChIdentifierButton"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="26dp"
        android:text="@string/WhereYuWannaGo"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    </RelativeLayout>

ここに私のログキャットがあります:

06-29 04:43:23.566: I/dalvikvm(1043): threadid=3: reacting to signal 3
06-29 04:43:23.837: I/dalvikvm(1043): Wrote stack traces to '/data/anr/traces.txt'
06-29 04:43:24.096: I/dalvikvm(1043): threadid=3: reacting to signal 3
06-29 04:43:24.157: I/dalvikvm(1043): Wrote stack traces to '/data/anr/traces.txt'
06-29 04:43:24.209: D/gralloc_goldfish(1043): Emulator without GPU emulation detected.
06-29 04:43:32.436: D/AndroidRuntime(1043): Shutting down VM
06-29 04:43:32.436: W/dalvikvm(1043): threadid=1: thread exiting with uncaught exception (group=0x409c01f8)
06-29 04:43:32.446: E/AndroidRuntime(1043): FATAL EXCEPTION: main
06-29 04:43:32.446: E/AndroidRuntime(1043): java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.ImageButton
06-29 04:43:32.446: E/AndroidRuntime(1043):     at feldballe.FPConsult.ChIdentifierActivity$1.onClick(ChIdentifierActivity.java:50)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at android.view.View.performClick(View.java:3511)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at android.view.View$PerformClick.run(View.java:14105)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at android.os.Handler.handleCallback(Handler.java:605)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at android.os.Handler.dispatchMessage(Handler.java:92)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at android.os.Looper.loop(Looper.java:137)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at android.app.ActivityThread.main(ActivityThread.java:4424)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at java.lang.reflect.Method.invokeNative(Native Method)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at java.lang.reflect.Method.invoke(Method.java:511)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
06-29 04:43:32.446: E/AndroidRuntime(1043):     at dalvik.system.NativeStart.main(Native Method)
06-29 04:43:33.056: I/dalvikvm(1043): threadid=3: reacting to signal 3
06-29 04:43:33.076: I/dalvikvm(1043): Wrote stack traces to '/data/anr/traces.txt'

私を助けてください。

4

4 に答える 4

1

これを試して...

私があなたのエラーログを追跡している間に..私はこれを見つけました

java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.ImageButton

レイアウトでButtonを使用し、それをクラスのImageButtonにキャストしています。

レイアウトでImageButtonを使用するか、クラスでButtonを使用して機能させます...

于 2012-06-29T05:01:53.427 に答える
0

ここにあなたの問題があります

あなたの findViewById() 関数は、ID "R.id.ChIdentifierButton" を持つ ImageButton を探します

ImageButton imageButton3;    
imageButton3 = (ImageButton) findViewById(R.id.ChIdentifierButton);
        imageButton3.setOnClickListener(new OnClickListener() {

            public void onClick(View chioverview) {
               setContentView(R.layout.yuwrong);
            }
        });     

「R.id.ChIdentifierButton」をxmlのボタンに割り当てている間

 <Button
    android:id="@+id/ChIdentifierButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/ChiCalButton"
    android:text="@string/ChIdentifier2" />

したがって、クラスキャスト例外:-)

于 2012-07-02T13:05:19.047 に答える
0

ImageButton imageButton;

ImageButton imageButton2;

ImageButton imageButton3;

ログに記載されているように、おそらく Button を ImageButton にキャストしています。main.xml のコードを貼り付けてもらえますか?

于 2012-06-29T05:27:02.213 に答える
0

編集したコードをチェックしてください:

import android.app.Activity;
import android.hardware.Camera;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.FrameLayout;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.SeekBar;

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

ImageButton imageButton;
ImageButton imageButton2;
ImageButton imageButton3;


Preview preview;
CameraDemo camerademo;

SeekBar ChIdentifierBar;
ImageView imageViewChi;

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

    addListenerOnButton();
}


public void addListenerOnButton() {

    imageButton = (ImageButton) findViewById(R.id.imageButton2);

    imageButton.setOnClickListener(new OnClickListener() {

        public void onClick(View arg0) {
           setContentView(R.layout.chioverview);
           imageButton3 = (ImageButton) findViewById(R.id.ChIdentifierButton);
           imageButton3.setOnClickListener(new OnClickListener() {

              public void onClick(View chioverview) {
              setContentView(R.layout.yuwrong);

           }

           }); 
        }

       });

    imageButton2 = (ImageButton) findViewById(R.id.imageButton1);

    imageButton2.setOnClickListener(new OnClickListener() {

        public void onClick(View arg0) {
           setContentView(R.layout.yuwrong);

        }

    });

}
}

これがあなたを助けることを願っています..

于 2012-06-29T04:28:33.397 に答える