Re: [android-developers] Strange SQLite error, possibly in native code?

2013-09-29 Thread tarun sablok
There should be one column in your database which should be named *_id* , its common error !!! On Sun, Sep 29, 2013 at 3:35 AM, Kostya Vasilyev kmans...@gmail.com wrote: Hello, One of my users reports a crash like this: android.database.sqlite.SQLiteException: no such column: _id (code 1):

Re: [android-developers] Re: barcode scanner on android emulator

2013-05-14 Thread tarun sablok
HI You cannot test the barcode functionality in emulator , it will always crash if you try in android emulator. You should try it in a device to test this functionality. Thanks Regards Tarun Sablok On Tue, May 14, 2013 at 1:42 AM, Lew lewbl...@gmail.com wrote: ASMA wrote: does anyone

Re: [android-developers] Framework or code to make my application read aloud any text

2013-04-12 Thread tarun sablok
Use text to speech converter engine in your code !!! On Fri, Apr 12, 2013 at 5:02 PM, santy santiago.gonzalez.iz...@gmail.comwrote: Hello. I want my application to be able to talk to the user, but I don't find any code to do that. Has anyone achieved it or know how to do? Thank you very

Re: [android-developers] Framework or code to make my application read aloud any text

2013-04-12 Thread tarun sablok
, April 12, 2013 2:50:55 PM UTC+2, tarun sablok wrote: Use text to speech converter engine in your code !!! On Fri, Apr 12, 2013 at 5:02 PM, santy santiago.go...@**gmail.comwrote: Hello. I want my application to be able to talk to the user, but I don't find any code to do that. Has anyone

Re: [android-developers] Update UI

2012-09-19 Thread tarun sablok
In that case your intent will be delivered to the activity in onNewIntent() so implement that and extract the extra data which you have send it through the getIntent() method ... Hope this helps Tarun On Tue, Sep 18, 2012 at 2:52 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote:

Re: [android-developers] Examples for Android with Eclipse

2012-08-14 Thread tarun sablok
Clean the project On Tue, Aug 14, 2012 at 1:37 PM, renuka renukanil.deshpa...@gmail.comwrote: On Saturday 11 August 2012 11:59 PM, Justin Anderson wrote: Care to explain what doesn't work means? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware

Re: [android-developers] prevent from reinitializing value

2012-08-13 Thread tarun sablok
Save the values you want to persist in onPause() or onStop() using SharedPreferences or you can also use onSaveInstanceState() to save your values and extract it when the activity is started the next time. On Mon, Aug 13, 2012 at 9:12 PM, TreKing treking...@gmail.com wrote: On Mon, Aug

Re: [android-developers] how to search android mobiles nearby having a common app?

2012-07-23 Thread tarun sablok
With Wifi - direct you will be able to do it . On Fri, Jul 20, 2012 at 12:25 AM, Harish B harish@gmail.com wrote: Guyz, need some help on a topic... We have created an app, and want to enable it so that it can find other mobiles nearby which have our app? Is there a possibility to

Re: [android-developers] ViewFlipper

2012-06-27 Thread tarun sablok
Well this is not related to your queation Have you noticed that while flipping through the views ViewFlipper leaks a lot of memory. On Wed, Jun 27, 2012 at 12:05 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Wed, Jun 27, 2012 at 12:36 AM, chandur mani

Re: [android-developers] Is showing dialog from a dialog possible?

2012-05-01 Thread tarun sablok
It is very much possible ... just include the showDialog() function with the ID of the dialog where you are handling the events of the dialog.. On Tue, May 1, 2012 at 6:46 AM, TreKing treking...@gmail.com wrote: On Mon, Apr 30, 2012 at 7:27 PM, Agus agus.sant...@gmail.com wrote: Is showing

Re: [android-developers] Scan Slider action be applied on a view.

2012-04-25 Thread tarun sablok
, tarun sablok tarun.sab...@gmail.comwrote: Sliding drawer will be hidden which i will have to drag out to the srceen but as I explained that I want a view to be displayed at the bottom of the screen which will be any layout ... and when i click that view it should come out as a drawer

[android-developers] Scan Slider action be applied on a view.

2012-04-24 Thread tarun sablok
I have a Relative Layout view with layout_gravity = bottom... and it has 3 images one on the left , one middle and one on the right and it occupies approximately 1\6 th of the screen in the bottom . Now i want that when the user clicks on the RelativeLayout anywhere the layout should

Re: [android-developers] Scan Slider action be applied on a view.

2012-04-24 Thread tarun sablok
Anderson magouyaw...@gmail.comwrote: Use SlidingDrawer... http://developer.android.com/reference/android/widget/SlidingDrawer.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 24, 2012 at 6:54 AM, tarun sablok tarun.sab...@gmail.comwrote

Re: [android-developers] Re: Hello everyone, what i have done so far regarding passing a ListView from one activity to another

2012-04-03 Thread tarun sablok
(=38+flat[i]); } so i tried the above loop to print out the elements separately (Just to see this works) but as we know the syntax of flat[] is for an array whilst flat is an arraylist any ideas about this matter ? On Apr 2, 5:36 pm, tarun sablok tarun.sab...@gmail.com wrote: You

Re: [android-developers] Re: OutofMemory exception

2012-03-28 Thread tarun sablok
Its because ur application is leaking memory . are you using loads of drawables in ur application ??? On Wed, Mar 28, 2012 at 1:22 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Out == No more of = Related to something Memory = those little ants that live inside your device maintaining

Re: [android-developers] Re: Start service

2012-03-28 Thread tarun sablok
Use *context.startService(new Intent(this,aService.class));*to start the service . It is because Broadcastreceiver class does not extend the Context class so we have to use the context provided in the onReceive method. Cheers Tarun On Tue, Mar 27, 2012 at 6:18 PM, jugni

[android-developers] Is support for USB 3.0 there in Android .

2012-03-05 Thread tarun sablok
Just want some pointers is there support for data transfer through USB 3.0 in the devices which are coming with Android 4.0 or any other version. -- 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] Is support for USB 3.0 there in Android .

2012-03-05 Thread tarun sablok
Just want some pointers is there support for data transfer through USB 3.0 in the devices which are coming with Android 4.0 or any other version. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Swipe Images

2012-02-27 Thread tarun sablok
use frame layout .. populate all the images initially and then you can apply some animations to control the images . On Mon, Feb 27, 2012 at 7:50 PM, Rami Makhamreh stan55...@gmail.com wrote: Hi all thx already for helping me; i have small question but it looks hard to me i want to

Re: [android-developers] Re: Is NFC card emulation possible on Galaxy Nexus and OS 4?

2012-02-24 Thread tarun sablok
It will not support UICc as it alredy has secure element as a NXP chip called SmartMx On Fri, Feb 24, 2012 at 12:16 PM, Roman K. roman.kochanek.andr...@googlemail.com wrote: Hey Michael, I have another question regarding card emulation. Do you know whether the UICC is physically connected

Re: [android-developers] handled the android.nfc.action.TRANSACTION_DETECTED event

2012-02-18 Thread tarun sablok
Hii Add the DEFAULT Category as well in the Intent filter , i think it will work out for you action android:name=android.nfc.action.TRANSACTION_DETECTED / category android:name=android.intent.category.DEFAULT / /intent-filter Well i am also working in NFC making

Re: [android-developers] UI requirement

2012-01-24 Thread tarun sablok
Use scroll view as the root element .. and use a composite view i.e extend the Linear Layout class and provide your implementation of the Header and the checkboxes which you want ... and every time add that to your scroll view when ever the button is clicked. hope this pointer

Re: [android-developers] How to save Logcat information from a device which is not rooted

2012-01-17 Thread tarun sablok
You can simply run this command in the command prompt (provided you have set the path of your environment variable in the environment variable) adb shell logcat after that run this command adb shell logcat filename.txt and a log file is generated in the desired location and which you

[android-developers] how to update a remote database from an Android application

2012-01-16 Thread tarun sablok
I want to update a remote database from my Android application . Just need some pointers on how to set up a remote database and how to update it from my application ?? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] how to update a remote database from an Android application

2012-01-16 Thread tarun sablok
I want to update a remote database from my Android application . Just need some pointers on how to set up a remote database and how to update it from my application ?? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: How to pair two devices to transfer file over Bluetooth using NFC

2011-12-25 Thread tarun sablok
i am using createInsecureRfcommSocketToServiceRecord() function to create the socket and here is the description what it says about function in Android developers ... public BluetoothSocket createInsecureRfcommSocketToServiceRecord (UUID uuid) Since: API Level 10 Create an RFCOMM

[android-developers] How to pair two devices to transfer file over Bluetooth using NFC

2011-12-21 Thread tarun sablok
I am trying to pair two devices One is Google Nexus S which has the applicaion running which reads the mac address written over the tag which is stuck on the other phone which is not Android one . Now i am trying to pair the devices as i tap on the other phone , my application reads the MAC

[android-developers] How to configure a NFC tag in using the URI = text/x-vCard

2011-12-16 Thread tarun sablok
I am trying to make an application of a business card which has name , mob no , company and other details . I want to write all these details on to a NFC tag . And from a different application i want to scan this tag and save the information received to the phones contact list Now i am

Re: [android-developers] NFC App self-launched

2011-11-12 Thread tarun sablok
You can restrict launching of your app when the card is brought close by mentioning the Data type as well in the NDEF intent ... i was also facing the same problem so i included the data field in the NDEF intent part and everytihng worked fine . On Fri, Nov 11, 2011 at 10:27 PM, k0nig

Re: [android-developers] transferring information from one application to another

2011-11-12 Thread tarun sablok
just add the data by using the functions putExtra() on the intent object and extract it at the receiving activity by using getIntent().getExtra() On Sun, Nov 13, 2011 at 12:10 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: ok, so u mean..in the same way transferring data from an

[android-developers] How to pair Nexus S with some other Bluetooth Device using NFC

2011-08-02 Thread tarun sablok
Can anyone suggest me the possible options as how to pair a Nexus S phone with any bluetooth device through NFC ie by just tapping the Nexus S phone and the Bluetooth device the Bluetooth connection should be established . -- You received this message because you are subscribed to the

[android-developers] Re: How to pair Nexus S with some other Bluetooth Device using NFC

2011-08-02 Thread tarun sablok
a Wifi connection. On Aug 2, 2:04 pm, tarun sablok tarun.sab...@gmail.com wrote: Can anyone suggest me the possible options as how topairaNexusS phone with anybluetoothdevice through  NFCie  by just  tapping the NexusSphone and theBluetoothdevice theBluetoothconnection should be established

[android-developers] Re: open nfc installation

2011-07-19 Thread tarun sablok
Hii Mohamed Ramadan I am also the facing the same problem while connecting to the Connection center . And i tried contacting someone in Open-NFC forum they are telling that it will be improved in the later releases. Are you trying to set up the Emulator , NFC simulator and the Connection

[android-developers] Re: Connection center

2011-06-17 Thread tarun sablok
Hey you will have to download the NFC simulator which is required for the simulation .This is the link for it http://sourceforge.net/projects/open-nfc/files/Open%20NFC%204.2.3%20%289635%29/ from here download the core version of it , in that you will find the NFC simulator as well the

[android-developers] i have developed one 3D Stack View in Android 3.0 , how do i accomodate that into a Fragment of other Activity in Android 3.0

2011-03-18 Thread tarun sablok
I have developed one 3D Stack View as a single activity , now i want to embedd that into one of the fragment of another activity in android 3.0 , i tried putting it but the things are getting Clipped . So can anyone suggest me how should i proceed so that my original activity gets in the