調試該項目時,先關掉其他項目Close Project,然後打斷點,按F6 Step Over進行調試,如果過程中跳入不認識的代碼,就按F7 Step Return,直到跳
到你認識的代碼
解決辦法:
<activity
android:name=".SecondActivity">
<intent-filter>
<action android:name="com.example.activitytest.ACTION_START"/>
<category
android:name="android.intent.category.DEFAULT" />
<category
android:name="com.example.activitytest.MY_CATEGORY"/>
</intent-filter>
</activity>
<activity
android:name=".ThirdActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category
android:name="android.intent.category.DEFAULT" />
<data android:scheme="http"/>
</intent-filter>
</activity>
Intent inten=new Intent(Intent.ACTION_VIEW);
inten.setData(Uri.parse("http://m.baidu.com"));
startActivity(inten);