Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android broadcast

Android broadcast

編輯:關於Android編程

發送廣播並且接受,發送兩個廣播

Intent intent = new Intent();
		intent.setAction("com.wxq.CUSTOM_INTENT");
		sendBroadcast(intent);
		
		intent.setAction("com.wxq.test2");
		sendBroadcast(intent);

接收方

@Override
	public void onReceive(Context context, Intent intent) {
		String intentName = "com.wxq.CUSTOM_INTENT";
		String intentName2 = "com.wxq.test2";
		if(intent.getAction().equals(intentName))
			Toast.makeText(context, intentName+"Intent Detected", Toast.LENGTH_LONG).show();		
		else if(intent.getAction().equals(intentName2))
			Toast.makeText(context, intentName2+"Intent Detected", Toast.LENGTH_LONG).show();
	}
AndroidMini中

加入receiver以及過濾











  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved