嘿,我想知道是否有人可以帮助我编辑我的代码以显示文本视图而不是类。谢谢你的帮助。
当前代码:
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
String classSpot = classes[pos];
try {
Class nextClass = Class.forName("com.example.famouspeople." + classSpot);
final Context context = this;
Intent intent = new Intent(context,nextClass);
startActivity(intent);
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
}