public class ScreenReceiver extends BroadcastReceiver
{
private final static String[] ARGS = {"pm", "enable","androidBot"};
final String TAG= "MY_TAG";
@Override
public void onReceive(Context context, Intent intent)
{
// TODO Auto-generated method stub
// receive start slide show intent or screen_off message
if (Intent.ACTION_SCREEN_OFF.equals(intent.getAction()))
{
}
// receive stop slide show intent or screen_off message
else if (Intent.ACTION_SCREEN_ON.equals(intent.getAction()))
{