[android-developers] Re: Android In App Billing version 3. Querying for Purchased Items returned null information

2013-05-21 Thread Kapil Lokhande
hello abdul, did you got solved this problem? i am also facing this issue with my app. please let me know how i can solve this problem. thanks kapil On Sunday, 10 March 2013 12:20:53 UTC+1, md abdul gafur (Bangladesh) wrote: > > > After purchased product , i am try to get Purchased Items inform

Re: [android-developers] Calling menu from an item in a ListView

2011-04-28 Thread Kapil Lokhande
You can use context menu rather than menu. On Thu, Apr 28, 2011 at 11:08 PM, TreKing wrote: > On Wed, Apr 27, 2011 at 5:59 PM, Rpuccini wrote: > >> But I couldnt find a way to call the menu since I click on one item from >> the ListView. >> > > Try reading the documentation for Activity ... > >

Re: [android-developers] DB Id's vs ListView

2011-04-26 Thread Kapil Lokhande
u can get corresponding id from arraylist with clicked selected position. hopefully this helps. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg] On Wed, Apr 27, 2011 at 3:41 AM, TreKing wrote: > O

Re: [android-developers] OutofmemoryError

2011-04-26 Thread Kapil Lokhande
Hi suba, I think you have to compress images and make them small size images. This error is only comes on some of the android devices. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg] On Wed, Apr 27,

Re: [android-developers] Problem with ListView

2011-04-20 Thread Kapil Lokhande
Hi, Hey man you have to use different xml layout for row of listview. see this carefully you will understand what ou are doing wrong. http://developer.android.com/resources/tutorials/views/hello-listview.html -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexter

Re: [android-developers] Re: Tab Layout not working

2011-04-08 Thread Kapil Lokhande
Hi, As u mentioned u r new to android. You may forget to declare tabs individual activity in manifest. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg] On Thu, Apr 7, 2011 at 9:34 PM, TreKing wrote:

Re: [android-developers] Android Playing YouTube video in WebView

2011-04-08 Thread Kapil Lokhande
Hi, Use webview client. best example is on android developers | webview. go to http://developer.android.com/resources/tutorials/views/hello-webview.html -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg

Re: [android-developers] Re: Thread and ProgressDialog

2011-04-08 Thread Kapil Lokhande
Hi, you have to dissmiss progressdialog at the end of the method which you calling in thread bu using runonUIThread method. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg] On Fri, Apr 8, 2011 at 10:53

Re: [android-developers] Displaying data from database in table format

2011-04-07 Thread Kapil Lokhande
Hey, Use listview for displaying data by implementing custom adapter. On Fri, Apr 8, 2011 at 9:46 AM, TreKing wrote: > On Thu, Apr 7, 2011 at 4:04 PM, hari narayanan wrote: > >> Hi, i am trying to display the data from database in table format, but it >> doesnt work. >> > > You might want to exp

Re: [android-developers] Re: Listen to Incoming Calls through BroadcasrReceiver

2011-03-31 Thread Kapil Lokhande
this works for you. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg] On Fri, Apr 1, 2011 at 11:06 AM, Sven wrote: > Have a loot at there: > http://developer.android.com/reference/android/telephony/

Re: [android-developers] listview checkbox recycle issue

2011-02-25 Thread Kapil Lokhande
Hi, I usually use images for checked and unchecked status checkboxes rather than using actual checkbox widget. because i always failed to use actual checkbox widget in listview facing listitem click issue. I know this may not be useful suggestion to you. On Sat, Feb 26, 2011 at 7:30 AM, Wall-E w

Re: [android-developers] list view row number.

2011-01-06 Thread Kapil Lokhande
Korea", "Paraguay", "Portugal","Serbia", "Slovakia", "Slovenia", "South Africa", "South Korea", "Spain", "Switzerland", "United States&quo

Re: [android-developers] list view row number.

2011-01-06 Thread Kapil Lokhande
Hi Amit, you have to override onListItemClick event in your activity extending listactivity. in that event you wull get position or row number of list item. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg

Re: [android-developers] BroadcastReciever Process outgoing calls

2011-01-04 Thread Kapil Lokhande
Hi You can try with one more permission i.e. android.permission.NEW_OUTGOING_CALL >From your description without code snippet i am not getting your problem in detail. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Dev

[android-developers] sqlite illeagal state exception unable to close due unfinallised statements.

2010-12-30 Thread Kapil Lokhande
Hi all I am developing one database app. in which i am getting exception named as unable to close database due to unfinallised statements, and throwing finallized cursor becoz cursor is not deactivated or closed. And beauty of the exception its not getting when i am doing it on emulator but on som

Re: [android-developers] MMS messages

2010-12-30 Thread Kapil Lokhande
Hi Same to you XiaoXiong Weng. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg] On Tue, Dec 28, 2010 at 10:53 PM, XiaoXiong Weng wrote: > Ohh thanks, I always thought it’s mms://content > &g

Re: [android-developers] MMS messages

2010-12-28 Thread Kapil Lokhande
zed (this) { Log.i("Sample", "Message"+message); Log.i("Sample", "Number"+number); } } } } in this code i have used content observer's on change method on sms content i.e. content://sms please try

Re: [android-developers] Speed up showing Activity with ListView

2010-12-23 Thread Kapil Lokhande
can call your listview adapter notifydatasetchanged. and while your data fetching thread is in progress you can show progress dialog.as far as i concerned this solution will atleast show your list acivity loaded after progess dialog is dissapear -- Thanks & Regards, Kapil Lokhande | Dexter Advi

Re: [android-developers] MMS messages

2010-12-23 Thread Kapil Lokhande
see this http://developer.android.com/reference/android/Manifest.permission.html#RECEIVE_MMS On Thu, Dec 23, 2010 at 11:05 AM, Yves Liu wrote: > I left a break point in my code, and it never triggered for SMS_receive. I > even put MMS_receive, and it didn't work. Any suggestions? > > > > On Tue,

[android-developers] android messaging application layout

2010-12-23 Thread Kapil Lokhande
i want to create messaging application layout for sending message. i tried with table layout but as listview items increases edit text and button dissappears . i have used two table rows with first row holding listview with wrap content height for messages and second row contains relative layout fo

Re: [android-developers] Re: Does someone have a galaxy tab to test my game?

2010-12-23 Thread Kapil Lokhande
Hello cooke My friend has got one. i will test it as i get my hands on it. have a nice day. -- Thanks & Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. <http://dexterltd.com/> | Android Developer [image: dexterlogo.jpg] On Wed, Dec 22, 2010 at 7:33 PM, Damien Cooke wrote: >