How to send and receive broadcast message
问题 I am trying to pass data between two activities that are inside of tabs. I am trying to use sendBroadcast() . With breakpoints set I never reach onReceive() . Manifest: <activity android:name=".WebResults" android:label="@string/app_name"> <intent-filter> <action android:name="com.toxy.LOAD_URL" /> </intent-filter> </activity> Activity Sender: Intent intent=new Intent(getApplicationContext(),WebResults.class); intent.setAction("com.toxy.LOAD_URL"); intent.putExtra("url",uri.toString());