0

ここ数日、Java を学ぼうとしているところです。私はチュートリアルなどの間を飛び回って、いくつかの基本を習得しようとしました。

現在、スプラッシュ スクリーンで 5 秒間開始し、メイン ページ (StartingPoint と呼ばれる) である別のアクション (正しい用語ですか?) に移動します。ただし、これらの 2 つのページ間をジャンプしているときにクラッシュします。基本的に、私の質問は、なぜこれを行っているのか、どうすれば修正できるのかということです。

最初にメイン ページを作成しましたが、それ自体は問題なく動作します。それらの2つのページ間をジャンプしようとしたときです。

マニフェスト - 修正:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jonysapp.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".Splash"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

    <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.jonysapp.test.StartingPoint"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.jonysapp.test.StartingPoint" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
</application>

スプラッシュ.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" 
android:background="@drawable/mirley"
>


</LinearLayout>

Splash.Java:ここのどこかでコードが間違っている気がします。たぶん、Try Catch Final で?

package com.jonysapp.test;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class Splash extends Activity{

@Override
protected void onCreate(Bundle MirleysVariable) {
    // TODO Auto-generated method stub
    super.onCreate(MirleysVariable);
    setContentView(R.layout.splash);
    Thread timer = new Thread(){
        public void run(){
            try{
                sleep(5000);

            } catch (InterruptedException e){
                e.printStackTrace();
            }finally{
                Intent openStartingPoint = new Intent(Splash.this, StartingPoint.class);
                Splash.this.startActivity(openStartingPoint);
            }
        }
    };
    timer.start();

}

}

開始点.Java

package com.jonysapp.test;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class StartingPoint extends Activity {

int counter;
Button add, sub;
TextView display;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_starting_point);
    counter = 0;
    add = (Button) findViewById(R.id.bAdd);
    sub = (Button) findViewById(R.id.bSub);
    display = (TextView) findViewById(R.id.tvDisplay);
    add.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            counter++;
            display.setText("Your total is " + counter);

        }
    });
    sub.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            counter--;
            display.setText("Your total is " + counter);

        }
    });

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.starting_point, menu);
    return true;
}

}

LogCat:

04-21 12:48:08.004: D/dalvikvm(31290): GC_FOR_ALLOC freed 66K, 3% free 8887K/9091K, paused 16ms

04-21 12:48:08.014: I/dalvikvm-heap(31290): Grow heap (frag case) to 10.280MB for 1639696-byte allocation

04-21 12:48:08.044: D/dalvikvm(31290): GC_CONCURRENT freed 1K, 3% free 10487K/10759K, paused 2ms+2ms

04-21 12:48:08.084: D/TextLayoutCache(31290): Using debug level: 0 - Debug Enabled: 0

04-21 12:48:08.134: D/libEGL(31290): loaded /system/lib/egl/libGLES_android.so

04-21 12:48:08.134: D/libEGL(31290): loaded /system/lib/egl/libEGL_adreno200.so

04-21 12:48:08.144: D/libEGL(31290): loaded /system/lib/egl/libGLESv1_CM_adreno200.so

04-21 12:48:08.144: D/libEGL(31290): loaded /system/lib/egl/libGLESv2_adreno200.so

04-21 12:48:08.174: D/OpenGLRenderer(31290): Enabling debug mode 0

04-21 12:48:13.094: W/dalvikvm(31290): threadid=11: thread exiting with uncaught exception (group=0x2b542210)

04-21 12:48:13.094: E/AndroidRuntime(31290): FATAL EXCEPTION: Thread-2196

04-21 12:48:13.094: E/AndroidRuntime(31290): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.jonysapp.test/com.jonysapp.test.StartingPoint}; have you declared this activity in your AndroidManifest.xml?

04-21 12:48:13.094: E/AndroidRuntime(31290): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1508)

04-21 12:48:13.094: E/AndroidRuntime(31290): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1384)

04-21 12:48:13.094: E/AndroidRuntime(31290): at android.app.Activity.startActivityForResult(Activity.java:3190)

04-21 12:48:13.094: E/AndroidRuntime(31290): at android.app.Activity.startActivity(Activity.java:3297)

04-21 12:48:13.094: E/AndroidRuntime(31290): at com.jonysapp.test.Splash$1.run(Splash.java:23)

04-21 12:48:13.364: D/OpenGLRenderer(31290): Flushing caches (mode 0)

04-21 12:48:13.404: D/OpenGLRenderer(31290): Flushing caches (mode 1)

この質問に対して投稿したコードが多すぎる可能性が非常に高いため、このページにあまりにも多くのコードを投稿した場合はお詫び申し上げます。重要な情報を見逃してしまった場合は、お知らせください。

補足として、これまでのコーディングで私が悪い習慣に陥るのを防ぐためのヒントがあれば、それをいただければ幸いです (必須ではありません)。

助けてくれてありがとう!

4

2 に答える 2

1

これはあなたの問題です:

04-21 12:48:13.094: E/AndroidRuntime(31290): android.content.ActivityNotFoundException: 明示的なアクティビティ クラスが見つかりません {com.jonysapp.test/ com.jonysapp.test.StartingPoint }; AndroidManifest.xmlでこのアクティビティを宣言しましたか?

マニフェストでアクティビティを宣言する必要があります。つまり、

<activity
    android:name="com.example.project.StartingPoint"
    android:label="@string/app_name">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

ps :intent-filterアプリ ランチャー アクティビティ用に追加されました。

これが役に立てば幸いです...乾杯!

于 2013-04-21T12:12:48.790 に答える
0

次のメッセージを参照してください。

04-21 12:48:13.094: E/AndroidRuntime(31290): android.content.ActivityNotFoundException: 明示的なアクティビティ クラス {com.jonysapp.test/com.jonysapp.test.StartingPoint} が見つかりません。AndroidManifest.xml でこのアクティビティを宣言しましたか

これは、マニフェスト ファイルで宣言していないアクティビティがあることを意味します。ここではすべて大文字を使用しています:

com.jonysapp.test.STARTINGPOINT

作ってみてください:

com.jonysapp.test.StartingPoint. 

クラス名は大文字と小文字が区別されると思います。@トリニモンは正しいです。

于 2013-04-21T12:16:03.807 に答える