LoginSignup
5
6

More than 5 years have passed since last update.

Android デフォルトで起動するアクティビティの設定

Posted at

Android アプリケーションで最初に起動するアクティビティ(デフォルトのアクティビティ)を設定する方法。

AndroidManifest.xml
<activity ...>
    <!-- 目的のアクティビティ内に -->
    <!-- ここから -->
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <!-- ここまでを追加 -->
</activity>

以上。なんだかググラビリティ低いのでメモ的に記事化しておく。

参考

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6