[android-developers] Not properly working internet issues
Today, I am working on Asyntask Http client server,I have hitting a API (REST) ,running on api after that net issues are come and app is crash ,Please give me valuable solution.. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. To post to this group, send email to android-developers@googlegroups.com. Visit this group at https://groups.google.com/group/android-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/android-developers/27dc02b9-fbda-414e-98e8-b4e1879ad59a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
[android-developers] New Console APK Deleted
Hello everyone, Today, *I have latest APK install the console and remove the old APK ,but not give the option on Delete,How can publish the new APK* -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. To post to this group, send email to android-developers@googlegroups.com. Visit this group at https://groups.google.com/group/android-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/android-developers/cafbfda8-947d-4ba2-a854-f2f017fc6cb1%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
Re: [android-developers] Problem with video in WebView
I tried playing .swf video. video in http://www.in.com/videos/watchvideo-cnbc-awaaz-1626397.html plays well in browser but not in webview. On Thursday, 7 June 2012 13:55:58 UTC+8, Narendra Singh Rathore wrote: > > > Please clarify, which video format are you trying to display. > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
Re: [android-developers] Looking for Unlocked CDMA Android Phones or any high-end Android CDMA phone that works in India (Band 800 Mhz)
you can try samsung galaxy pop. I used it on tata indicom for 2 years Regards, Amit Gupta Singapore Mobile: +65-9825-4152 On Mon, Jun 4, 2012 at 10:33 PM, aishwarya shukla < aishwaryashukl...@gmail.com> wrote: > > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to android-developers@googlegroups.com > To unsubscribe from this group, send email to > android-developers+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
Re: [android-developers] Problem with video in WebView
I am also facing the same issue. Regards, Amit Gupta On Mon, Jun 4, 2012 at 3:02 AM, Angélica Oliveira wrote: > Hello, > > I am new in android, and I am developing an app, where I want to watch a > movie in a webview, using HTML 5, but the video doesn't appear, when I run > the app I can see only the video controls... > > The code in html that I am using is: > > code = "" + > > "" + > > "" + > > "Simple Movie Player" + > > "" + > > "" + > > " > " controls>" + > > "" + > > "" + > > ""; > > The uri is from a video in the internal storage. I load this html code in > a webview by this command: > > webview.loadDataWithBaseURL(null, code, null, "utf-8", null); > > Can anyone help me? I am trying very hard to do this! > > > Thanks in advance, > > Angelica > > > > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to android-developers@googlegroups.com > To unsubscribe from this group, send email to > android-developers+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
[android-developers] how to populate checkedTextView
Hi, I am new to andriod programming and needs help in population of checkedTextView for strings in array. Could you please help me? Regards, Amit Gupta -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
[android-developers] Webview not showing flash
Hi, I am trying to open a html page with embedded flash object using webview. It is not showing the flash object. Could you please help me? I am using sdk api 10. my code is like package com.test5; import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; public class Test5Activity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); WebView myWebView = (WebView) findViewById(R.id.webview); String summary = "http://www.amitwiki.com/player/Main_v1.swf"+ "quality=high id=ColorsPlayer name=ColorsPlayer allowscriptaccess=always"+ "flashvars=servicetype=amitg&geocheck=0&fixWidth=700&fixHeight=394&flvpath=feed01?e=2677239232%26h=2ac6ec78edb671b1ffe5583e89cc90e8&channel_index=1&controlPath=/player/control_in_live_v1.swf&showad=4&vastpreurl=http%3A%2F% 2Fc7.zedo.com %2Fjsc%2Fc1%2Ffns.vast%3Fn%3D1656%26c%3D1169%2F14%26d%3D75%26s%3D4%26v%3Dvast2%26z%3D>"; myWebView.getSettings().setJavaScriptEnabled(true); myWebView.getSettings().setPluginsEnabled(true); String mimeType = "text/html"; String encoding = "utf-8"; myWebView.loadDataWithBaseURL("null", summary, mimeType, encoding, ""); } } Regards, Amit Gupta Singapore -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en