1

私はAndroidプログラミングにまったく慣れておらず、「HelloAndroid」という本を読んでいました。

基本的に、この本は数独ゲームの例を使ってAndroidを教えてくれます。

main.xmlは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/background"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:padding="30dip"
android:orientation="vertical" >
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center" >
<TextView
android:text="@string/main_title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="25dip"
android:textSize="24.5sp" />
<Button
android:id="@+id/continue_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/continue_label" />
<Button
android:id="@+id/new_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/new_game_label" />
<Button
android:id="@+id/about_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/about_label" />
<Button
android:id="@+id/exit_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/exit_label" />
</LinearLayout>
</LinearLayout>

これがstring.xmlです

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Sudoku</string>
<string name="main_title">Android Sudoku</string>
<string name="continue_label">Continue</string>
<string name="new_game_label">New Game</string>
<string name="about_label">About</string>
<string name="exit_label">Exit</string>
<color name="background">#3500ffff</color>
<string name="about_title">About Android Sudoku</string>
<string name="about_text">\
Sudoku is a logic-based number placement puzzle.
Starting with a partially completed 9x9 grid, the
objective is to fill the grid so that each
row, each column, and each of the 3x3 boxes
(also called <i>blocks</i>) contains the digits
1 to 9 exactly once.
</string>
</resources>

これが古いものへの追加のマニフェストです:

<activity android:name=".About"
android:label="@string/about_title" >
        </activity>

これがabout.xmlです

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip" >
<TextView
android:id="@+id/about_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/about_text" />
</ScrollView>

そして最後にSudoku.java

package org.example.sudoku;

import android.app.Activity;
import android.os.Bundle;
import android.content.Intent;
import android.view.View;
import android.view.View.OnClickListener;

public class Sudoku extends Activity implements OnClickListener {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        View continueButton = findViewById(R.id.continue_button);
        continueButton.setOnClickListener((OnClickListener) continueButton);

        View newButton = findViewById(R.id.new_button);
        newButton.setOnClickListener((OnClickListener) this);

        View aboutButton = findViewById(R.id.about_button);
        aboutButton.setOnClickListener((OnClickListener) this);

        View exitButton = findViewById(R.id.exit_button);
        exitButton.setOnClickListener((OnClickListener) this);


    }
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.about_button:
        Intent i = new Intent(this, About.class);   /** Here is the Error **/
        startActivity(i);
        break;
        // More buttons go here (if any) ...
        }
        }

}

少し説明させてください。数独のメインページは4つのボタンで構成されており、この本はボタンの実装を教えてくれます。そのため、ユーザーがボタンを押すと、プログラムはユーザーを概要ページ(単なるテキストページ)に誘導します。エラーはAbout.classで発生しました、EclipseはAboutと呼ばれるそのようなクラスはないと言いました。また、インテント引数にもAbout.classが含まれている理由がよくわかりません。

そしてアイデア??

4

3 に答える 3

1

他のアクティビティと同じパッケージを使用して、マニフェストにアクティビティを書き留めましたか?

http://developer.android.com/guide/topics/manifest/manifest-intro.html

ログキャットも投稿していただけませんか?

于 2012-06-06T13:47:23.753 に答える
1

パッケージにクラスAbout.javaがありますか?org.example.sudoku

public class About extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.about);
 }
}
于 2012-06-06T13:48:50.263 に答える
1

あなたのコメントによると........あなたmust have the file About.java in you projectとそれのエントリをマニフェストに追加します...

<activity android:name=".About"
        android:label="@string/app_name">

    </activity>

したがって、プロジェクトにSudoku.javaと並行してAbout.javaを追加すると、アクティビティを拡張する必要があります.........

于 2012-06-06T13:54:29.850 に答える