誰かが私のコードを編集して、クラスではなくテキストビューを表示するのを手伝ってくれるかどうか疑問に思っていました. 助けてくれてありがとう。
現在のコード:
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();
}
}