所以我正在关注newboston的Android教程。我知道如何使用intent开始一项活动。但是,当使用类对象创建新活动时,类名称不会在Class.forname()方法中被识别。但是如果我直接使用Intent创建,那么找到类就没问题了。但是使用这个,使用相同的类路径,我有java.lang.ClassNotFoundException` package name- com.hello.myproject;
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={"MainActivity","example1","example2","example3","example4","example5","example6"};
@Override
protected void onCreate(Bundle savedInstanceState) {
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) {
super.onListItemClick(l, v, position, id);
Class myclass=Class.forName("com.hello.myproject.MainActivity");//This class name is not being found, but if I copy the same path inside Intent() it has no problem and yes there is a class called MainActivity
Intent myintent=new Intent(Menu.this,myclass );
startActivity(myintent);
}
}
manifest资源配置文件
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="com.hello.myproject.MAINACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".Menu">
<intent-filter>
<action android:name="com.hello.myproject.MENU" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".TextPlay">
<intent-filter>
<action android:name="com.hello.myproject.TEXTPLAY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:1)
Narayan Payyoor
只有在manifest.xml文件中的intent-filter
标记内添加了Activity
时,用于启动Activity的语法才有效。
例如:
如果你这样做,
Class myclass = Class.forName("com.hello.myproject.MAINACTIVITY");
Intent myintent = new Intent(Menu.this,myclass );
startActivity(myintent);
您必须使用intent-filter
<activity
android:name="com.hello.myproject.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="com.hello.myproject.MAINACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
正如每个建议的那样,你可以使用类名。
Intent myIntent = new Intent(this, MainActivity.class);
startActivity(myIntent);
由于你想在列表项目上打开不同的不同活动点击,这里你可以做什么..我不确定但它应该有用。
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Class myclass = Class.forName("com.hello.myproject." + classes[position]);
Intent myintent = new Intent(Menu.this,myclass );
startActivity(myintent);
}
快乐编码......
答案 1 :(得分:0)
您必须将.class
的名称传递给您想去的地方。使用方式如下:
Intent myintent=new Intent(Menu.this, MainActivity.class);
答案 2 :(得分:0)
使用此
Intent myintent=new Intent(Menu.this, MainActivity.class);
OR
Class myclass=Class.forName("MainActivity");
Intent myintent=new Intent(Menu.this, myclass);
答案 3 :(得分:0)
定义&#34; MainActivity&#34;在Manifest xml文件中,调用如下:
Intent myIntent = new Intent(this, MainActivity.class);
startActivity(myIntent);
希望它对你有用。