Back to project page hts-cycle.
The source code is released under:
GNU General Public License
If you think the Android project hts-cycle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package it.uniroma2.wifionoff; // ww w . j ava 2 s . c o m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class PacketHandler extends BroadcastReceiver{ @Override public void onReceive(Context context, Intent intent) { String m=intent.getStringExtra("Message"); String ip=intent.getStringExtra("IP"); boolean done=false; for(int i=0;i<OnOffService.IPs.size();i++){ if(OnOffService.IPs.get(i).equals(ip)){ done=true; } } if(!done) { OnOffService.IPs.add(ip); String[] lines = m.split(System.getProperty("line.separator")); for(int i=1; i<lines.length;i++){ String l=lines[i]; for(int j=0;j<OnOffService.ConnectedApp.size();j++){ if(OnOffService.ConnectedApp.get(j).getName().equals(l)){ Intent noti=new Intent (OnOffService.ConnectedApp.get(j).getBro()); noti.putExtra("IP", ip); context.sendBroadcast(noti); } } } } } }