2013-06-19 77 views
0
import android.app.Activity; 
import android.os.Bundle; 
import android.view.Menu; 

public class howActivity extends Activity { 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.howto); 


} 

@Override 
public boolean onCreateOptionsMenu(Menu menu) 
{ 
// Inflate the menu; this adds items to the action bar if it is present. 
getMenuInflater().inflate(R.menu.main, menu); 
return true; 
} 
} 

它要的東西在這個程序,因爲它會切換到其他活動,只是沒有這一個爲什麼我的應用程序在更改活動時崩潰?

+1

當你有一個錯誤,添加logcat的。 –

+0

你應該發佈調用者活動,從你調用這個的地方開始,這個bug可能就在那裏,除非在佈局方面有一些問題。 – Daniel

+0

+1 to @鄒鄒。 Logcat錯誤會很有幫助,因爲您正在使用的代碼來切換活動。 – brianestey

回答

1

確保您的活動是在你的Manifest文件中明確規定

+0

http://developer.android.com/guide/topics/manifest/manifest-intro.html – chancea

+0

那就是它謝謝 – Dep

+0

沒問題,Manifest每次都會給我 – chancea

相關問題