私はAndroid開発に不慣れで、アクティビティについて混乱しています(アクティビティと呼ばれているかどうかさえわかりません笑)1つのアクティビティから別のアクティビティを開始するにはどうすればよいですか?
public void work(View v) {
//does quite a bit of stuff in here
//then goes back to csend() to check if this needs to be repeated
}
public void csend(View view) {
if (i < x){
//does a little bit of stuff here
work(); //i need to make this run the other code
}
}
また、(ビュー ビュー) とはどういう意味ですか? Android コードのさまざまな部分を説明するチュートリアルへのリンクを教えてもらえますか?
ありがとう編集:迅速な対応をありがとう、私はすべてを読んでいきます