1. 程式人生 > >Android 隱式啟動 activity

Android 隱式啟動 activity

Android 啟動 activity 分為 顯式 和 隱式,我們經常使用的方式又叫做 顯式啟動,比如:

startActivity(new Intent(this, BeautifulDesignGirl.class));

那麼隱式啟動又是什麼呢,比如如下:

Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("lzh://goods:8080/goodsDetail?goodsId=100100"));
startActivity(intent);