溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ComponentName的簡單使用

發(fā)布時間:2020-06-14 08:08:12 來源:網(wǎng)絡 閱讀:881 作者:YuLi1207 欄目:開發(fā)技術

 ComponentName可以通過一個應用程序打開另一個應用程序。

 

            Intent intent = new Intent();
		// 第一個參數(shù)是要開啟的應用的包名,第二個參數(shù)是類名
		ComponentName componentName = new ComponentName("com.example.test",
				"com.example.test.MainActivity");
		try {
			intent.setComponent(componentName);
			Bundle bundle = new Bundle();
			bundle.putString("A->C", "A to C");
			intent.putExtras(bundle);
			startActivity(intent);
		} catch (Exception e) {
	Toast.makeText(this, "提示用戶沒有找到應用程序,或者是做其他的操作!", Toast.LENGTH_SHORT).show();
		}

以上可以用Bundle來傳送信息。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI