当前位置: 首页 > 面试题库 >

无法解决Android中的错误?

翟宏放
2023-03-14
问题内容

我正在从事android问答游戏。QuestionActivity和EndgameActivity是我游戏中的2个类。我想将游戏的控制权转移到EndgameActivity。为此,我在QuestionActivty类中添加

Intent i = new Intent(this, EndgameActivity.class);
            startActivity(i);
            finish();

if(currentGame.isGameOver())方法上。但是在回答了最后一个问题后,当我的游戏控制权没有转移到EndgameActivity时,日志猫显示了以下错误。

QuestionActivity课程-

public class QuestionActivity extends Activity implements OnClickListener{

    private Question currentQ;
    private GamePlay currentGame;
    private CountDownTimer counterTimer;

            @Override
            public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.question);
                processScreen();
         }
                /**
         * Configure current game and get question
         */
         private void processScreen()
         {
        currentGame = ((CYKApplication)getApplication()).getCurrentGame();
        currentQ = currentGame.getNextQuestion();
        Button nextBtn1 = (Button) findViewById(R.id.answer1);
        nextBtn1.setOnClickListener(this);
        Button nextBtn2 = (Button) findViewById(R.id.answer2);
        nextBtn2.setOnClickListener(this);
        Button nextBtn3 = (Button) findViewById(R.id.answer3);
        nextBtn3.setOnClickListener(this);
        Button nextBtn4 = (Button) findViewById(R.id.answer4);
        nextBtn4.setOnClickListener(this);
        Button nextBtn5 = (Button) findViewById(R.id.answer5);
        nextBtn5.setOnClickListener(this);
        /**
         * Update the question and answer options..
         */
        setQuestions();

    }


    /**
     * Method to set the text for the question and answers from the current games
     * current question
     */
    private void setQuestions() {
        //set the question text from current question
        String question = Utility.capitalise(currentQ.getQuestion());
        TextView qText = (TextView) findViewById(R.id.question);
        qText.setText(question);

        //set the available options
        List<String> answers = currentQ.getQuestionOptions();
        TextView option1 = (TextView) findViewById(R.id.answer1);
        option1.setText(Utility.capitalise(answers.get(0)));

        TextView option2 = (TextView) findViewById(R.id.answer2);
        option2.setText(Utility.capitalise(answers.get(1)));

        TextView option3 = (TextView) findViewById(R.id.answer3);
        option3.setText(Utility.capitalise(answers.get(2)));

        TextView option4 = (TextView) findViewById(R.id.answer4);
        option4.setText(Utility.capitalise(answers.get(3)));

        int score = currentGame.getScore();
        String scr = String.valueOf(score);
        TextView score1 = (TextView) findViewById(R.id.score);
        score1.setText(scr);

        counterTimer=new CountDownTimer(15000, 1000) {
            public void onFinish() {                
                if(currentGame.getRound()==20)
                    System.exit(0);
                currentGame.decrementScore1();
                processScreen();
                             }

            public void onTick(long millisUntilFinished) {
                TextView time = (TextView) findViewById(R.id.timers);
                time.setText( ""+millisUntilFinished/1000);
                                }
        };
        counterTimer.start();
    }


    @Override
    public void onResume() {
        super.onResume();
    }


    @Override
    public void onClick(View arg0) {
        //Log.d("Questions", "Moving to next question");
        if(arg0.getId()==R.id.answer5)
        {
        new AlertDialog.Builder(this)
        .setMessage("Are you sure?")
        .setCancelable(true)
        .setPositiveButton("Yes",
         new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog,
         int id) {
                finish();
                 }
             }).setNegativeButton("No", null).show();

                }

        else
        {
            if(!checkAnswer(arg0)) return;

        /**
         * check if end of game
         */
        if (currentGame.isGameOver()){
            //Log.d("Questions", "End of game! lets add up the scores..");
            //Log.d("Questions", "Questions Correct: " + currentGame.getRight());
            //Log.d("Questions", "Questions Wrong: " + currentGame.getWrong());
            Intent i = new Intent(this, EndgameActivity.class);
            startActivity(i);
            finish();
        }
            else
            {
            Intent i = new Intent(this, QuestionActivity.class);
                        finish();
                        startActivity(i);
        }
        }
      }



    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event)
    {
        switch (keyCode)
        {
        case KeyEvent.KEYCODE_BACK :
            return true;
        }

        return super.onKeyDown(keyCode, event);
    }


    /**
     * Check if a checkbox has been selected, and if it
     * has then check if its correct and update gamescore
     */
    private boolean checkAnswer(View v) {

        Button b = (Button) v;
        String answer = b.getText().toString();
         counterTimer.cancel();
         b.setBackgroundResource(R.drawable.ans);
         b.setEnabled(false);
                    //Log.d("Questions", "Valid Checkbox selection made - check if correct");
            if (currentQ.getAnswer().equalsIgnoreCase(answer))
            {
                b.setBackgroundResource(R.drawable.ansgreen);
                //Log.d("Questions", "Correct Answer!");
                currentGame.incrementScore();
            }
            else{
                b.setBackgroundResource(R.drawable.ansred);
                //Log.d("Questions", "Incorrect Answer!");
                currentGame.decrementScore();
            }
            return true;
        }

}

EndgameActivity Class-

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class EndgameActivity extends Activity implements View.OnClickListener{
    Button menue1, adde1;
    TextView escore1;
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(findViewById(R.layout.endgame));
        menue1 = (Button) findViewById (R.id.menue);
        menue1.setOnClickListener(this);
        adde1 = (Button) findViewById(R.id.adde);
        adde1.setOnClickListener(this); 
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event)
    {
        switch (keyCode)
        {
        case KeyEvent.KEYCODE_BACK :
            return true;
        }

        return super.onKeyDown(keyCode, event);
    }


         @Override
         public void onClick(View v) {
             switch(v.getId()){
                 case R.id.menue:
                     Intent i= new Intent(this, SplashActivity.class);
                     startActivity(i);    
                     break;
                 case R.id.adde:
                     Intent j = new Intent(this, HighscoreActivity.class);
                     startActivity(j);                   
                 break;

             }
         }

    }

日志猫

   09-09 18:32:14.668: D/AndroidRuntime(7617): Shutting down VM
09-09 18:32:14.668: W/dalvikvm(7617): threadid=1: thread exiting with uncaught exception (group=0x40a71930)
09-09 18:32:14.688: E/AndroidRuntime(7617): FATAL EXCEPTION: main
09-09 18:32:14.688: E/AndroidRuntime(7617): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=EndgameActivity }
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1622)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1417)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.app.Activity.startActivityForResult(Activity.java:3370)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.app.Activity.startActivityForResult(Activity.java:3331)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.app.Activity.startActivity(Activity.java:3566)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.app.Activity.startActivity(Activity.java:3534)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at com.abc.cyk.QuestionActivity.onClick(QuestionActivity.java:143)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.view.View.performClick(View.java:4204)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.view.View$PerformClick.run(View.java:17355)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.os.Handler.handleCallback(Handler.java:725)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.os.Handler.dispatchMessage(Handler.java:92)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.os.Looper.loop(Looper.java:137)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at android.app.ActivityThread.main(ActivityThread.java:5041)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at java.lang.reflect.Method.invokeNative(Native Method)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at java.lang.reflect.Method.invoke(Method.java:511)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
09-09 18:32:14.688: E/AndroidRuntime(7617):     at dalvik.system.NativeStart.main(Native Method)
09-09 18:32:18.258: I/Process(7617): Sending signal. PID: 7617 SIG: 9
09-09 18:32:18.758: E/Trace(7693): error opening trace file: No such file or directory (2)
09-09 18:32:18.908: D/dalvikvm(7693): GC_FOR_ALLOC freed 58K, 8% free 2413K/2616K, paused 26ms, total 27ms
09-09 18:32:18.918: I/dalvikvm-heap(7693): Grow heap (frag case) to 4.553MB for 2160016-byte allocation
09-09 18:32:19.038: D/dalvikvm(7693): GC_FOR_ALLOC freed 1K, 5% free 4521K/4728K, paused 113ms, total 113ms
09-09 18:32:19.088: D/dalvikvm(7693): GC_CONCURRENT freed <1K, 5% free 4521K/4728K, paused 4ms+3ms, total 50ms
09-09 18:32:19.558: D/gralloc_goldfish(7693): Emulator without GPU emulation detected.
09-09 18:32:21.728: I/Choreographer(7693): Skipped 71 frames!  The application may be doing too much work on its main thread.

清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.abc.cyk"
      android:versionCode="3"
      android:versionName="3.0">
    <application android:icon="@drawable/cyk_icon_bg" android:label="@string/app_name" android:name=".CYKApplication" >
        <activity android:name=".SplashScreen"
                  android:label="@string/app_name"
                  android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".QuestionActivity"
            android:screenOrientation="landscape" />
        <activity android:name=".SplashActivity"
             android:screenOrientation="portrait" />
        <activity android:name=".RulesActivity"
             android:screenOrientation="portrait" />
        <activity android:name=".EndgameActivity"
             android:screenOrientation="portrait" />
        <activity android:name=".HighscoreActivity"
            android:screenOrientation="portrait"  />
        <activity android:name=".SettingsActivity"
             android:screenOrientation="portrait" />
        <activity android:name=".AnswersActivity" />
    </application>
    <uses-sdk android:minSdkVersion="2" />

</manifest>

我认为可能是计时器方法中的一些错误导致了这些错误。有人知道如何解决此错误吗?


问题答案:

我正在检查您的代码,findViewById从您的代码中删除

setContentView(findViewById(R.layout.endgame));


 类似资料:
  • 这是Gradle控制台的输出。 任何关于如何修复这个preDexDebug错误的帮助都将是一个很大的帮助!顺便说一句,我也不能在左边的project explorer中看到我的“libs”文件夹。

  • 我在android studio中遇到了这个错误,我尝试了很多方法来解决这个问题,但根本不起作用。 任务“:app:checkDebugarMetadata”的执行失败。 无法解析配置的所有文件: app: dedegRuntimeClasspath。找不到savedstate-1.1.0.aar(androidx.savedstate: Savedstate: 1.1.0)。在以下位置进行搜索:

  • 我想在我的构建中添加此依赖项。gradle文件: 当我添加这个并单击现在同步时,它会给我错误: 这是我的 build.gradle 文件: 我知道在我的ObserviceScrollView库中,有一个recyclerview依赖项,但我不知道为什么会出现这个错误。 我到处搜索,没有一个解决方案有效。解决方案,如更改google()和jcenter()存储库的顺序。。。

  • 现在我正在尝试从git运行克隆应用程序https://github.com/frinder/frinder-app但问题是该应用程序制作了很长时间,所以应该改变bulid.gradle 但是当我尝试相同的同步实现“com.android.支持:动画矢量可绘制:28.0.0”,但如果我删除它,请继续向我显示错误28.0.0它显示如下 但我不知道是什么造成了不完全相同的版本 这是应用程序build.g

  • 问题内容: 我到处都在搜索此答案,并尝试了多种方法来解决此问题,但是由于我是本IDE的新手,所以我需要一些帮助。 我所做的只是在android studio中创建了一个空项目,然后对无法构建的文件进行更改,并在我的消息gradle同步中不断出现7个错误。 错误: (27,17)无法解决:junit:junit:4.12 无法解决:javax.inject:javax.inject:1 无法解决:j

  • 我创建了一个虚拟项目来理解基于卡片的布局。不幸的是,我无法解决RecyclerView上的符号错误。我对编程还是个新手,不明白哪里出了问题。将依赖项添加到生成文件: