How to send and receive broadcast message
Please use
intent.getStringExtra("");
and
new Intent();
Worked for me.
I was having the same problem as you, but I figured out:
Remove the intent filter from the manifest and change
Intent intent=new Intent(getApplicationContext(),WebResults.class);
for
Intent intent=new Intent();
Hope it helps!