が動作していない:は、私がこのテント規範持っ
Intent arbeiten = new Intent(this, arbeiten.class);
startActivity(arbeiten);
をしかし、Eclipseは私に語った:同じプロジェクトで
The constructor Intent(new AdapterView.OnItemClickListener(){}, Class<arbeiten>) is undefined
その他(作業)インテントを、他のクラスは
のように見えますIntent toolb = new Intent(this, ToolBox.class);
toolb.putExtra("json", json.toString());
startActivity(toolb);
彼らは働いています...
は "Arbeiten" -Classは次のようになります。
package XXX;
import android.app.Activity;
import android.os.Bundle;
public class arbeiten extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
インテントを取り巻くコードは何ですか? – Tushar
「ケース2:中断」内のスイッチです。 – Styler2go
インテントクラス? http://developer.android.com/reference/android/content/Intent.html – Styler2go