XML ファイル:
<Button android:id="@+id/btn" android:onClick="launchSettings" android:text="button" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
java ファイル:
public void launchSettings(View v){ //Launch a new activity Intent i = new Intent(this,SettingActivity.class); startActivity(i); }
これらの機能を追加すると、新しいアクティビティを起動できるようになります。
以上が新しいアクティビティ(インテント)を起動するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。