本文参考:intent-of-android
以下是笔记:
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="lzh" />
</intent-filter>
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("lzh://goods:8080/goodsDetail?goodsId=100100"));
startActivity(intent);