1

我目前正在尝试在我的 android 应用程序中实现 Spinner。我在获取 OnItemSelected 方法时遇到问题,无法根据选择的项目打开一个新类。

我有下面显示的代码,这似乎不起作用,而且由于添加了这个,现在当我单击按钮打开电影和电视时它从菜单中打开错误的布局,但除了添加波纹管代码之外没有任何改变.

应该发生什么:活动开始 --> 单击电影和电视 --> 从 Spinner 中选择项目 --> 根据选择的项目打开新类。

现在发生的事情:活动开始 --> 点击电影和电视 --> 错误的布局打开 --> 在手机上按回 --> 正确的布局打开 --> 从微调器中选择项目 --> 没有发生

代码:

String classes[] = {"SeanConnery", "BillyConnoly", "JamesMcAvoy", "KarenGillan", "KellyMacdonald", "AshleyJensen"};
    @Override
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {

    String classSpot = classes[pos];
    try{
    Class nextClass = Class.forName("com.example.famouspeople." + classSpot);
    Intent ourIntent = new Intent(Film.this, nextClass);
    startActivity(ourIntent);
    }
    catch(ClassNotFoundException e){
        e.printStackTrace();
    }
    }

显现:

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.famouspeople.MainMenu"
        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="com.example.famouspeople.Film"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.example.famouspeople.SeanConnery"
        android:label="@string/app_name" >
    </activity>
            <activity
        android:name="com.example.famouspeople.BillyConnoly"
        android:label="@string/app_name" >
    </activity>
            <activity
        android:name="com.example.famouspeople.JamesMcAvoy"
        android:label="@string/app_name" >
    </activity>
            <activity
        android:name="com.example.famouspeople.KarenGillan"
        android:label="@string/app_name" >
    </activity>
            <activity
        android:name="com.example.famouspeople.AshleyJensen"
        android:label="@string/app_name" >
    </activity>
            <activity
        android:name="com.example.famouspeople.KellyMacdonald"
        android:label="@string/app_name" >
    </activity>
</application>

4

2 回答 2

2

要创建意图,您可以执行以下操作...

final Context context = this;
Intent intent = new Intent(context,youractivity.class);
            startActivity(intent);
于 2013-03-08T20:16:38.820 回答
1

改变你mainfest

<activity
        android:name="com.example.famouspeople.SeanConnery"
        android:label="@string/app_name" >
    </activity>

<activity
        android:name=".YourJavaClassName"
        android:label="@string/app_name" >
        <intent-filter>
             <action android:name="com.example.famouspeople.SeanConnery" />
             <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
</activity>
于 2013-03-08T20:34:43.197 回答