[android-developers] Phonegap online training

2012-11-17 Thread suresh
For Phonegap online training please contact me sureshmca.sv...@gmail.com -- 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

[android-developers] Problem in android google play store ?

2012-11-17 Thread mohammed Nuhail
hi friends... I have a problem with google play store in 7inch tablet. wen i launched that app i got this dialog message ( Unfortunately google play store has stopped ) . please help me out with it... thanks in advance -- You received this message because you are subscribed to the Google

Re: [android-developers] Need Advice in Syncing Data From Android Device to SQL-Server Database

2012-11-17 Thread Andrew Mackenzie
Aadi, just to understand more what you want: You're trying to have an Android app read/write to a SQLite database running on your PC, using the USB connection? That doesn't sound easy, and I'm not sure it's possible. To get access over IP to the PC you will have to start by using the loopback

[android-developers] Android In App Billing opening in foreground

2012-11-17 Thread Synaion
Hi guys, I have in app billing working and it is copied from the Android Sample. The problem is, I am opening the application from a screen class I created but I have the context of the original context passed to the screen class. When I request a purchase with in app billing it exits out to

[android-developers] Chronometer Widget lags against other stopwatches

2012-11-17 Thread Gabriel Simões
Hello, I have created a simple activity with a chronometer widget just to display the elapsed time. The code is really simple: //Initiate the chronometer base time chChronometer.setBase(SystemClock.elapsedRealtime()); //start the chronometer chChronometer.start(); The time displayed lags hard

[android-developers] Re: Video Player for MP4 and MOV

2012-11-17 Thread CL
Thanks. Is there any open source MOV library that I can use? On Friday, November 16, 2012 12:16:09 AM UTC+8, bob wrote: This class can do MP4: android.widget.VideoView I doubt it will do MOV. On Thursday, November 15, 2012 9:40:59 AM UTC-6, CL wrote: Hi all, Does it mean I

[android-developers] Google map changes mamimum zoom value in Draw method.

2012-11-17 Thread vitthal khatpe
Hi All, I have written following code in overridden draw method. public void draw(Canvas canvas, MapView mapView, boolean shadow) { mapView.getMaxZoomLevel(); } This method(getMaxZoomLevel()) return gets changes constantly, when your starts zoom in operation on the Map. My question

[android-developers] regarding android json request

2012-11-17 Thread nageswara rao Rajana
Hi, JSONObject holder = new JSONObject(); holder.put(Key1,Value1); holder.put(Key2,Value2); holder.put(Key3,Value3); holder.put(Key4,Value4); String jsonrequest = holder.toString(); but while sending request the format is changing to

[android-developers] Re: regarding android json request

2012-11-17 Thread skink
nageswara rao Rajana wrote: Hi, JSONObject holder = new JSONObject(); holder.put(Key1,Value1); holder.put(Key2,Value2); holder.put(Key3,Value3); holder.put(Key4,Value4); String jsonrequest = holder.toString(); but while sending request the format is changing to

[android-developers] Multiple inflated views in loop for

2012-11-17 Thread Sterling Michel Diaz De Oleo
Hi everyone. I want to show several listview view with it's corresponding title in a linear layout. I have a linear layout, I inflate a view fo till the title and listview and add that view to the LinearLayout. But only appear one view with the data that was filled the first time. I want

Re: [android-developers] Convert a view (layout) to a Bitmap

2012-11-17 Thread Justin Buser
I don't understand why I keep finding different posts by you about forcing layout passes. The View instance this person is referring would never go through a layout pass, regardless of the point at which his code was executed for several reasons, most notably because it's never even added to

[android-developers] Expandable listview with selectall checkbox : group itemclick and scrolling bug

2012-11-17 Thread Samet
I have an ExpandableListView with a checkbox next to group name and when expanded, child items with checkbox as well. Let's suppose I have 4 groups with 50 childs. When a group is expanded, and I click on select all checkbox, everything works fine, all checkbox are selected and keep their

[android-developers] Re: Text display in the bottom of emoji

2012-11-17 Thread skink
Live Happy wrote: I display emoji in EditText using spannable, but the problem is that the text appears in the bottom of the emoji picture, not in the middle of it (see picture). So, how to make it display in the middle? imho you can't do this using spans, however you could try ImageSpan

[android-developers] Re: Expandable listview with selectall checkbox : group itemclick and scrolling bug

2012-11-17 Thread Samet
I've found the solution. Instead of using OnCheckedChangeListener on the groupcheckbox, I used OnClickListener and it solved everything. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to