I want to send data through URL.I've tried the below code:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://xxxxx.xxxxx.com/property/p.wp?p=n&refid=13&cat="+cat));
startActivity(browserIntent);
when the data had been inserted into database, the browser will return something like this:
http://xxxxx.xxxxx.com/property/p.wp?p=OK
to send the data through url already success but how do I get the return URL from the browser? plus can we send picture through URL?