[android-developers] WebView Html Scrolling issue

2013-10-21 Thread Rahul Kaushik
Hi, I have an html file is showing scrolling in browser but not showing in webview in android Please suggest Thanks RK -- 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

Re: [android-developers] WebView Html Scrolling issue

2013-10-21 Thread Michael Banzon
Debug. On Oct 21, 2013 8:44 AM, Rahul Kaushik rahulkaushi...@gmail.com wrote: Hi, I have an html file is showing scrolling in browser but not showing in webview in android Please suggest Thanks RK -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] WebView Html Scrolling issue

2013-10-21 Thread Rahul Kaushik
how to debug html scrolling?? On Mon, Oct 21, 2013 at 12:18 PM, Michael Banzon mich...@banzon.dk wrote: Debug. On Oct 21, 2013 8:44 AM, Rahul Kaushik rahulkaushi...@gmail.com wrote: Hi, I have an html file is showing scrolling in browser but not showing in webview in android Please

[android-developers] Re: Detecting the presence of a menu button.

2013-10-21 Thread b0b
You can force the appearance of the Overflow menu when a physical menu key is present with this hack below, calling that function with true for value. Not sure it still works on rcent versions of Android though. And of couse, someone is probably going to say don't do it!. static public void

[android-developers] Can not insert null values in Android = 4 with PhoneGap

2013-10-21 Thread Benjamin Kemner
If I use WebSQL database with Phonegap, I have problems inserting null values into the database. Example: executeSql(INSERT INTO test(id, name, name2) VALUES(?,?,?), [1, null, b] ... *Results* - Android 3.2 (hardware): 1, null, b - Blackberry Playbook (hardware): 1, null, b - Ripple

[android-developers] Re: Detecting the presence of a menu button.

2013-10-21 Thread b0b
EDIT: this function must be called with false for the value param. On Monday, 21 October 2013 10:14:14 UTC+2, b0b wrote: You can force the appearance of the Overflow menu when a physical menu key is present with this hack below, calling that function with true for value. -- You received

Re: [android-developers] Data transfer over USB between Android host and device

2013-10-21 Thread galapogos
Hi, thanks, do you mean this - http://developer.android.com/guide/topics/connectivity/usb/index.html ? This might work, but I'm assuming it runs over ADB, and will require ADB drivers on the host. If the host is an Android device or an embedded Linux system on an ARM processor, are there ADB

Re: [android-developers] WebView Html Scrolling issue

2013-10-21 Thread Michael Banzon
I suspect that the setup you are testing is complex. Try with the smallest example you can thank of and apply layers until it fail. I can assure you that scrolling in webviews in fact does work*. *In most cases. On Oct 21, 2013 9:00 AM, Rahul Kaushik rahulkaushi...@gmail.com wrote: how to

Re: [android-developers] Indeterminate Progress Bar not animating

2013-10-21 Thread Dusk Jockeys Android Apps
I had a similar issue before.. seems to do with Window display timing, I couldn't work out. However, I found if I wrapped the ProgressBar in a Layout, and applied the Hide/Show logic to the Layout instead, that worked fine, the progress bar was hidden and displayed when required. Worth a

[android-developers] Signing apk

2013-10-21 Thread Rahul Kaushik
Can we sign the two different package /app with the self created certificates? Thanks Rahul Kaushik -- 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

Re: [android-developers] Signing apk

2013-10-21 Thread Jayu Sagar
yes you can !! Did you face any issues? On Mon, Oct 21, 2013 at 4:02 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Can we sign the two different package /app with the self created certificates? Thanks Rahul Kaushik -- You received this message because you are subscribed to the Google

[android-developers] Re: Android developer registration with Neteller

2013-10-21 Thread Syed Rakib Al Hasan
anyone with knowledge on this? I am about to do the same as well. On Sunday, May 20, 2012 4:36:12 PM UTC+6, Balint wrote: Hello everyone, I tried to register as an android developer with my Neteller card, but Google asks for the Bank code and my bank account number. I am registered with

Re: [android-developers] Signing apk

2013-10-21 Thread Rahul Kaushik
no am about to sign my other application with same certificate is it good practise?? On Mon, Oct 21, 2013 at 4:59 PM, Jayu Sagar jayu.andr...@gmail.com wrote: yes you can !! Did you face any issues? On Mon, Oct 21, 2013 at 4:02 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Can we

Re: [android-developers] Signing apk

2013-10-21 Thread Jayu Sagar
yeah it should be fine, as you would have generated certificate under some company name all your apps would be referencing to same certificate On Mon, Oct 21, 2013 at 5:56 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: no am about to sign my other application with same certificate is it

[android-developers] Forcing app to use wi-fi, not 3G, for latency reasons

2013-10-21 Thread RLScott
My app uses a UDP network protocol involving very little data. But the round-trip latency is important. I have heard that 3G latency is more variable than wi-fi, especially after a long period of inactivity. My app will use the network data after several hours of inactivity, and I want that

[android-developers] Windows 8.1 and adb problem

2013-10-21 Thread Martin
After upgrading to Windows 8.1 adb stops working. Does anybody know if Google will release a fix for adb so that it works on Windows 8.1? Thanks Martin -- 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] Re: Tapping the overflow button make the action mode finish.

2013-10-21 Thread Cliffus
can you please post the answer to your question? thanks! Cliff Op woensdag 6 maart 2013 09:13:53 UTC+1 schreef Hilda Chen: Dear All: I have added some menu items to action mode of EditText, and two menu items gone to overflow. But when I tapped the overflow button, the action mode

Re: [android-developers] Forcing app to use wi-fi, not 3G, for latency reasons

2013-10-21 Thread Robert Greenwalt
We will prefer wifi networks over 3g networks if the user has enabled wifi and is within range of a known network. You can check if we are connected to wifi via NetworkInfo activeInfo = ConnectivityManager.getActiveNetworkInfo(); Boolean wifi = (activeInfo != null activeInfo.getType() ==

[android-developers] Windows 8.1 and adb problem

2013-10-21 Thread Johan Appelgren
How does it fail? Adb works fine on Windows 8.1 for me, tried with a Galaxy Nexus. -- 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,

Re: [android-developers] Data transfer over USB between Android host and device

2013-10-21 Thread Lew
galapogos wrote: Hi, thanks, do you mean this - http://developer.android.com/guide/topics/connectivity/usb/index.html ? This might work, but I'm assuming it runs over ADB, and will require ADB drivers on the host. If the host is an Android device or an embedded Linux system on an ARM

[android-developers] Re: Windows 8.1 and adb problem

2013-10-21 Thread Martin
The device, a Nexus 4, just won't connect and does not appear in the list of adb devices. Also, I can't debug or upload apps to my Nexus 4 via Eclipse, .. A lot of other people are having the same problem: http://forum.xda-developers.com/showthread.php?t=2347317

[android-developers] Re: Windows 8.1 and adb problem

2013-10-21 Thread Martin
I just got this working by telling the Nexus to 'Connect as camera (PTP)' not as a Media Device (MTP). Martin -- 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