表现:

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

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

    <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>


         <activity
            android:name=".StartingPoint" android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.colegiul.orar.STARTINGPOINT" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ourClass"
            android:label="@string/app_name" >

</activity>
           <activity
            android:name=".Menu" android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.colegiul.orar.MENU" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

</manifest>


Menu.java:

package com.colegiul.orar;

import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class Menu extends ListActivity{

    String classes[] ={"StartingPoint", "Clasa a 9-a A", "Clasa a 9-a B"
            , "Clasa a 9-a C", "Clasa a 9-a D", "Clasa a 9-a E", "Clasa a 9-a F"};


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setListAdapter(new ArrayAdapter<String>(Menu.this, android.R.layout.simple_list_item_1, classes));
    }

    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        // TODO Auto-generated method stub
        super.onListItemClick(l, v, position, id);
        String cheese =classes[position];
        try{
        Class ourClass = Class.forName("com.colegiu.orar." + cheese);
        Intent ourIntent = new Intent(Menu.this, ourClass);
        startActivity(ourIntent);
        }catch(ClassNotFoundException e){
            e.printStackTrace();
        }
    }
}


StartingPoint.java

package com.colegiul.orar;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class StartingPoint extends Activity {

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


    @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;
    }

}


main.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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".StartingPoint" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/orar" />

</RelativeLayout>


我的应用程序正运行于一个运行良好的启动屏幕,并打开一个新菜单,该菜单包含一个包含7个示例的列表,第一个“ StartingPoint”应打开一个新活动,但事实并非如此,我的头几乎被炸死了试图找出原因。.有人可以告诉我,为什么不能正常工作?谢谢。

O,PS:
请非常耐心,并详细说明我的原因,因为我是新手。

最佳答案

您的onListItemClick具有类似以下内容:

Class ourClass = Class.forName("com.colegiu.orar." + cheese);
Intent ourIntent = new Intent(Menu.this, ourClass);
startActivity(ourIntent);


并且清单的打包名称定义为:package="com.colegiul.orar"

显然行不通!
您应将以下行替换为以下行

Class ourClass = Class.forName("com.colegiul.orar." + cheese);


编辑:

此后,由于Intent的值未在清单中声明为活动,因此在实例化cheese时会遇到另一个问题。

String classes[] ={"StartingPoint", "Clasa a 9-a A", "Clasa a 9-a B"
            , "Clasa a 9-a C", "Clasa a 9-a D", "Clasa a 9-a E", "Clasa a 9-a F"};


您的classes数组仅包含在应用清单中声明的​​一个Activity名称。其他不是。 (实际上,您不能用空格声明活动-它们是无效的!!)因此,您应该在堆栈跟踪中遇到一条消息,例如“您是否在清单中声明了此活动”,否则可能会引发异常(ClassNoFoundException )。

08-27 22:31