Androidで別のアクティビティに移動する方法を教えてください。
次の手順を知っています: アクティビティ関数を開始します。 パラメータとしてのインテントとは何ですか?
ありがとう
Androidで別のアクティビティに移動する方法を教えてください。
次の手順を知っています: アクティビティ関数を開始します。 パラメータとしてのインテントとは何ですか?
ありがとう
次のコードを使用します:-
Intent intent = new Intent(CurrentActivity.this, OtherActivity.class);
CurrentActivity.this.startActivity(intent);
Intent intent = new Intent(FirstActivity.this,SecondActivity.class);
インテントは、アクティビティを開始するために使用されるパラメーターです。
startActivity(new Intent(<context>,<class>));