我正在遵循在线教程的确切步骤,我检查了其他所有地方, 这给了我没有错误,但是,当涉及到这个活动而不是菜单时,它给了我一个空白的白页。 请你帮我解决一下这个问题是什么?! 谢谢。 :)
public class Menu extends ListActivity{
String classes[] = { "startingPoint", "example1", "example2"
, "example3", "example4", "example5", "example6"};
@Override
public void onCreate(Bundle savedInstanceState,
PersistableBundle persistentState) {
// TODO Auto-generated method stub
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) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
String cheese = classes[position];
try{
Class ourClass = Class.forName("com.thenewboston.travis." + cheese);
Intent ourIntent = new Intent(Menu.this,ourClass);
startActivity(ourIntent);
} catch (ClassNotFoundException e){
e.printStackTrace();
}
}
答案 0 :(得分:1)
重载onCreate(Bundle,PersistableBundle)
仅适用于API级别21及以上。对于21之前的版本,您需要onCreate(Bundle)
。
从
更改签名@Override
public void onCreate(Bundle savedInstanceState,
PersistableBundle persistentState) {
到
@Override
public void onCreate(Bundle savedInstanceState) {