1. 程式人生 > >android利用隱式intent跳轉介面

android利用隱式intent跳轉介面


AndroidManifest.xml檔案中,下面紅色部分的內容不可少
<activity android:name=".LoginActivity">
    <intent-filter>
        <action android:name="com.vrphogame.thyroidapp0716.ACTION_START" />
        <category android:name="com.vrphogame.thyroidapp0716.LOGIN_ACTIVITY" />
        <category android
:name="android.intent.category.DEFAULT" />
</intent-filter> </activity>
java程式碼:
Intent intent = new Intent("com.vrphogame.thyroidapp0716.ACTION_START");
intent.addCategory("com.vrphogame.thyroidapp0716.LOGIN_ACTIVITY");
startActivity(intent);