我目前正在尝试在我的Android应用程序中实现一个Spinner。我在获取OnItemSelected方法时遇到问题,根据选择的项目打开一个新类。
我有下面显示的代码,这似乎不起作用,另外,因为添加这个,它现在从菜单单击按钮打开电影和电视它打开错误的布局,但除了添加没有任何改变波纹管代码。
应该发生什么:活动开始 - >点击电影和电视 - >从Spinner中选择项目 - >新类将根据选择的项目打开。
现在发生了什么:活动开始 - >点击电影和电视 - >错误的布局打开 - >按回电话 - >正确的布局打开 - >从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>
答案 0 :(得分:2)
创建意图你可以做这样的事情......
final Context context = this;
Intent intent = new Intent(context,youractivity.class);
startActivity(intent);
答案 1 :(得分: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>