Click here to Skip to main content
15,908,931 members
Home / Discussions / Android
   

Android

 
AnswerRe: Class requires API level 11 (current min is 8) Pin
Peter Leow4-Apr-14 2:29
professionalPeter Leow4-Apr-14 2:29 
AnswerRe: Class requires API level 11 (current min is 8) Pin
Rafique Android Developer17-Apr-14 5:04
Rafique Android Developer17-Apr-14 5:04 
Questionproblem with android html5 app Pin
Jassim Rahma30-Mar-14 0:20
Jassim Rahma30-Mar-14 0:20 
AnswerRe: problem with android html5 app Pin
Kornfeld Eliyahu Peter30-Mar-14 3:37
professionalKornfeld Eliyahu Peter30-Mar-14 3:37 
GeneralRe: problem with android html5 app Pin
Jassim Rahma30-Mar-14 7:56
Jassim Rahma30-Mar-14 7:56 
AnswerRe: problem with android html5 app Pin
Kornfeld Eliyahu Peter30-Mar-14 7:59
professionalKornfeld Eliyahu Peter30-Mar-14 7:59 
NewsBitmap from view with opaque/semi transparent background Pin
DaveyM6926-Mar-14 12:25
professionalDaveyM6926-Mar-14 12:25 
GeneralRe: Bitmap from view with opaque/semi transparent background Pin
hhsumon31-Mar-14 2:00
hhsumon31-Mar-14 2:00 
GeneralRe: Bitmap from view with opaque/semi transparent background Pin
DaveyM692-Apr-14 9:36
professionalDaveyM692-Apr-14 9:36 
Questiondetection de personne dans une image Pin
ranouna24-Mar-14 6:12
ranouna24-Mar-14 6:12 
SuggestionRe: detection de personne dans une image Pin
Richard Deeming24-Mar-14 10:06
mveRichard Deeming24-Mar-14 10:06 
Generalcount the number of people in the image Pin
ranouna25-Apr-14 0:58
ranouna25-Apr-14 0:58 
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 

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.