Click here to Skip to main content
15,887,776 members
Home / Discussions / Android
   

Android

 
QuestionHow to make Norwegian Text to Speech Application in Android Pin
Member 883863721-Mar-14 3:40
Member 883863721-Mar-14 3:40 
AnswerRe: How to make Norwegian Text to Speech Application in Android Pin
Member 107242124-Apr-14 0:23
Member 107242124-Apr-14 0:23 
Questionhow to use MCC, MNC, LAC, CID current location find in android app Pin
aks_aashu19-Mar-14 2:16
aks_aashu19-Mar-14 2:16 
AnswerRe: how to use MCC, MNC, LAC, CID current location find in android app Pin
Richard MacCutchan19-Mar-14 3:55
mveRichard MacCutchan19-Mar-14 3:55 
QuestionRe-Material to start android programming and sites to visit Pin
Member 1067900618-Mar-14 0:40
Member 1067900618-Mar-14 0:40 
AnswerRe: Re-Material to start android programming and sites to visit Pin
Richard MacCutchan18-Mar-14 0:51
mveRichard MacCutchan18-Mar-14 0:51 
AnswerRe: Re-Material to start android programming and sites to visit Pin
Member 1069188424-Mar-14 19:51
Member 1069188424-Mar-14 19:51 
QuestionNo open asp page when I post data from Android Pin
Ngan Tran17-Mar-14 23:16
Ngan Tran17-Mar-14 23:16 
Iam having android code bellow:
after send request to asp page than receiving respond content.
I have a problem : asp page not open and in page load function I get data from request . but it is null.
Somebody help me. get data from asp page

Android code
 public String SendDataWebForm()
	  {
	  
		  String line = "", rs = "";
		  HttpClient client = new DefaultHttpClient();
		    HttpPost post = new HttpPost("http://tracklocation.somee.com/maps.aspx?id=12321");
		    try {
		      List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
		      nameValuePairs.add(new BasicNameValuePair("imei","123456789"));

		      post.setEntity(new UrlEncodedFormEntity(nameValuePairs));

		      HttpResponse response = client.execute(post);
		     // BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
		      rs = response.toString();
		    } catch (IOException e) {
		      e.printStackTrace();
		    }
		    return rs;
		  }
		   
ASP code
namespace WebLocationPredicttion
{
    public partial class maps : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string text = Page.Request.Form["imei"];
      
       }
    }
}

QuestionAndroid SDK Tools Pin
Member 1054906116-Mar-14 22:23
Member 1054906116-Mar-14 22:23 
AnswerRe: Android SDK Tools Pin
Peter Leow16-Mar-14 22:51
professionalPeter Leow16-Mar-14 22:51 
QuestionPrint via android Pin
Member 947380915-Mar-14 23:03
Member 947380915-Mar-14 23:03 
QuestionRedirect in Web form that do not any thing Pin
Ngan Tran15-Mar-14 2:59
Ngan Tran15-Mar-14 2:59 
QuestionRe: Redirect in Web form that do not any thing Pin
Richard Deeming17-Mar-14 2:38
mveRichard Deeming17-Mar-14 2:38 
QuestionGCM require compulsory googlce account Pin
nileshandroid1813-Mar-14 23:51
nileshandroid1813-Mar-14 23:51 
AnswerRe: GCM require compulsory googlce account Pin
Tom Marvolo Riddle14-Mar-14 0:10
professionalTom Marvolo Riddle14-Mar-14 0:10 
QuestionAndroid Push Notification Without GCM(Google cloud messaging) Pin
nileshandroid1813-Mar-14 23:48
nileshandroid1813-Mar-14 23:48 
QuestionRe: Android Push Notification Without GCM(Google cloud messaging) Pin
Richard Deeming14-Mar-14 2:16
mveRichard Deeming14-Mar-14 2:16 
AnswerRe: Android Push Notification Without GCM(Google cloud messaging) Pin
Member 107242126-Apr-14 22:54
Member 107242126-Apr-14 22:54 
QuestionAndroid Push Notification Pin
nileshandroid1813-Mar-14 23:46
nileshandroid1813-Mar-14 23:46 
AnswerRe: Android Push Notification Pin
Member 107242126-Apr-14 22:58
Member 107242126-Apr-14 22:58 
Questioncoding issue Pin
Member 1066899613-Mar-14 19:12
Member 1066899613-Mar-14 19:12 
AnswerRe: coding issue Pin
Tom Marvolo Riddle13-Mar-14 22:46
professionalTom Marvolo Riddle13-Mar-14 22:46 
QuestionPlay sound file in ASP Pin
famontepeque13-Mar-14 10:51
famontepeque13-Mar-14 10:51 
AnswerRe: Play sound file in ASP Pin
Richard MacCutchan13-Mar-14 22:16
mveRichard MacCutchan13-Mar-14 22:16 
QuestionError send data to webform Pin
Ngan Tran12-Mar-14 4:01
Ngan Tran12-Mar-14 4:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.