こんにちは、私はここで少し助けを必要と...Androidのアクティビティ問題
私のコードの最初の部分のthats:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button coll = (Button) findViewById(R.id.collections);
coll.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(view.getContext(), Collections.class);
startActivity(myIntent);
}
}); }
クラスコレクション:
public class Collections extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Button boom = (Button) findViewById(R.id.button01);
setContentView(boom);
}
}
メインコンテンツ
android:text="Boom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
と私はマニフェストファイルに追加しました:
<activity android:name=".Collections">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
そして問題は、私はMainactivity.Class上のボタンをクリックすると、アプリがクラッシュしていることです。
何が問題なのですか?
logcatからstracktraceを表示してください(私はあなたのマニフェストにコレクションがありませんと仮定します) – mibollma
あなたの質問でエラーが発生しているlogcatを表示してください – Nikki
[link] http://i304.photobucket.com/albums/nn170/damcrew /Capture.png [/ link] – hardartcore