[android-developers] Re: SDK for Augmented Reality for real world objects Android ?

2012-02-20 Thread sagare
him information about car head light. how can i achieve this. Thanks a lot, Sagar On Feb 10, 7:30 pm, Raghav Sood raghavs...@androidactivist.org wrote: Nothing like this exists for Android yet, sorry. Thanks On Fri, Feb 10, 2012 at 7:56 PM, sagare sagar.ekb...@gmail.com wrote

[android-developers] SDK for Augmented Reality for real world objects Android ?

2012-02-10 Thread sagare
Is there any third party sdk for Argumented reality of real word objects ? know a few like QCAR from qualcomm and AndAR but these are tag based I am looking at an sdk which is not tag based and can find real world object. Any pointer will be appreciated. Thanks, Sagar -- You received this

[android-developers] Re: QSB on Android help plz?

2010-08-18 Thread sagare
Replies plz? Thanks, Sagar On Aug 17, 3:56 pm, sagare sagar.ekb...@gmail.com wrote: Hi Teo,   Thx for reply but i dont want to use content provider coz my data is not persistant its temporary also i want to locate QSB at some location in the activity. thanks, Sagar On Aug 17, 3:51 pm

[android-developers] QSB on Android help plz?

2010-08-17 Thread sagare
Hi All, I want a to use a Quick Search Box in my application to search my application data so in a process of implementing it i went through http://developer.android.com/guide/topics/search/search-dialog.html and SearchableDictonary sample in SDk so as per what i got QSB requires a content

[android-developers] Re: QSB on Android help plz?

2010-08-17 Thread sagare
isn't instantiated until/unless it's needed (someone correct me if i'm wrong). On Aug 17, 1:40 pm, sagare sagar.ekb...@gmail.com wrote: Hi All,     I want a to use a Quick Search Box in my application to search my application data so in a process of implementing it i went throughhttp

[android-developers] Re: Stop activity animation problem?

2010-08-05 Thread sagare
replies? Thanks, Sagar On Aug 4, 3:12 pm, sagare sagar.ekb...@gmail.com wrote: Hi Android experts waiting for your replies. Thanks, Sagar On Aug 4, 12:18 pm, sagare sagar.ekb...@gmail.com wrote: Hi Metal,    Defiantely i dont want the animation but the flag

[android-developers] Re: Stop activity animation problem?

2010-08-04 Thread sagare
it all :/ On Aug 4, 3:25 pm, sagare sagar.ekb...@gmail.com wrote: Hi All,   Please help me with this. Thanks, Sagar On Aug 4, 12:08 am, sagare sagar.ekb...@gmail.com wrote: Hi All,    I want dont want the activity animation that comes by default when we start a new activity

[android-developers] Re: Stop activity animation problem?

2010-08-04 Thread sagare
Hi Android experts waiting for your replies. Thanks, Sagar On Aug 4, 12:18 pm, sagare sagar.ekb...@gmail.com wrote: Hi Metal,    Defiantely i dont want the animation but the flag FLAG_ACTIVITY_NO_ANIMATION even after setting is not working anyone please help. Thanks, Sagar On Aug 4, 11

[android-developers] Re: Stop activity animation problem?

2010-08-03 Thread sagare
Hi All, Please help me with this. Thanks, Sagar On Aug 4, 12:08 am, sagare sagar.ekb...@gmail.com wrote: Hi All,    I want dont want the activity animation that comes by default when we start a new activity (i.e. the right to left scrolling effect to new activity view) so i googled a bit

[android-developers] Stop activity animation problem?

2010-08-03 Thread sagare
Hi All, I want dont want the activity animation that comes by default when we start a new activity (i.e. the right to left scrolling effect to new activity view) so i googled a bit and found a flag FLAG_ACTIVITY_NO_ANIMATION in the Intent class also i applied that flag to my intent via the

[android-developers] A problem in Tabbar implementation ?

2010-07-29 Thread sagare
Hi All, I am having a problem in tabbar. As per what I know when i use TabHost each activity is associated with a particular tab i.e. we have a separate activity for showing view of each tab which is fine with me but what i want to know is what if one of my activity on a particular tab

[android-developers] Is it possible to have a single ui element instance across the application?

2010-07-29 Thread sagare
Hi All, I have created a custom component and i want it to be singleton in my application and i want all actvities my application to have this custom component which is singleton. how can i achieve this? Please help me in this regard Thanks and Regards, Sagar -- You received this

[android-developers] Re: Is it possible to have a single ui element instance across the application?

2010-07-29 Thread sagare
at from Google applications repeats the common portions of activity display in all layout files. ll...@meridja.com Mark Murphy mmur...@commonsware.com wrote: On Thu, Jul 29, 2010 at 8:05 AM, sagare sagar.ekb...@gmail.com wrote:      I have created a custom component and i want

[android-developers] Have a problem in ListView please help ?

2010-07-22 Thread sagare
Hi All, I am creating a list of albums and each album can have multiple songs. So I wanted to is having multiple listviews on a screen ok (around 30-35 albums each having their songs) performance wise and wont create a problem ? Or i should implement a single list of albums where each

[android-developers] Re: Have a problem in ListView please help ?

2010-07-22 Thread sagare
(at least on 2.0+) this lets you have a group item for e.g. for an album, which when expanded shows all songs in that album. On Jul 22, 4:11 pm, sagare sagar.ekb...@gmail.com wrote: Hi All,       I am creating a list of albums and each album can have multiple songs. So I wanted to is having

[android-developers] Re: Whether to use a Service or Thread for Http Connection?

2010-07-09 Thread sagare
Hi Mikey, Thanks for reply but i still some how have a question if my activity starts a thread and say that activity dies somehow so what happens to the thread it started does it complete its run properly and then ends or it its killed as soon as the activity dies? Thanks, Sagar On Jul 9, 12:18 

[android-developers] Re: Whether to use a Service or Thread for Http Connection?

2010-07-08 Thread sagare
Hi All thanks for your replies i still some how have a question if my activity starts a thread and say that activity dies somehow so what happens to the thread it started does it complete its run properly and then ends or it its killed as soon as the activity dies? Thanks, Sagar On Jul 8, 1:46 

[android-developers] Re: Whether to use a Service or Thread for Http Connection?

2010-07-06 Thread sagare
Hi All, Thanks for your replies AsynTask seems to be what I should use but I am still not clear with the difference between service and Thread for Http communication. Thanks, Sagar On Jul 6, 12:43 am, Frank Weiss fewe...@gmail.com wrote: Only people who want to punish themselves use Java

[android-developers] Re: Whether to use a Service or Thread for Http Connection?

2010-07-05 Thread sagare
Hi Android experts please reply about the pros and cons of using both thread as well as Service for http connection On Jul 5, 10:04 am, sagare sagar.ekb...@gmail.com wrote: Hi All,    I am a newbie in android and i had a question whether i should use a service or thread for http connection

[android-developers] Whether to use a Service or Thread for Http Connection?

2010-07-04 Thread sagare
Hi All, I am a newbie in android and i had a question whether i should use a service or thread for http connection and what will be the advantage of using a service over a thread or viceversa. Please help me out with this. Thanks, Sagar -- You received this message because you are subscribed

[android-developers] Re: Android Application design?

2010-07-01 Thread sagare
, sagare sagar.ekb...@gmail.com wrote: 1) Can i use some design pattern like MVC or something in my android application Sure, you can use any design pattern you like in your app. Some will work better than others, of course, given the way the Android Framework is designed and depending on what

[android-developers] Re: What exactly is Handler and Loopers in android ?

2010-07-01 Thread sagare
Hi All, Please help me on this Thanks, Sagar On Jun 29, 12:17 pm, sagare sagar.ekb...@gmail.com wrote: Hi,    I am very confused about handlers and looper can anyone plz explain it in simple terms to me any good links would be great. Thanks, Sagar -- You received this message because

[android-developers] What exactly is Handler and Loopers in android ?

2010-06-29 Thread sagare
Hi, I am very confused about handlers and looper can anyone plz explain it in simple terms to me any good links would be great. Thanks, Sagar -- 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] What are the advantages of an Android Developers Device?

2010-06-27 Thread sagare
Hi All, I saw this http://developer.android.com/guide/developing/device.html and as per what i got the advantages of Android developer device is that it is SIM unlocked and unlocked bootloader what i wanted to know is are there any other advantages than this of the Android developers

[android-developers] Which android device to target for Android development?

2010-06-25 Thread sagare
I am a newBie and was just wondering which mobile device should i target first for my application after a bit googling i found Android dev phone 1 and android developer phone 2 but does this device have or support Android 2.1 ? Or can i target some other device like motorola droid for my

[android-developers] Re: Which android device to target for Android development?

2010-06-25 Thread sagare
Ixonos Denmark ApS Niels Jernes Vej 10, DK-9220 Aalborg SO, Denmark On Jun 25, 8:53 am, sagare sagar.ekb...@gmail.com wrote: I am a newBie and was just wondering which mobile device should i target first for my application after a bit googling i found Android dev phone 1 and android

[android-developers] Re: Which android device to target for Android development?

2010-06-25 Thread sagare
automatically with 2.x (a few layout things might need to tweaked) However, if you make an app that uses features in 2.x it won't work with 1.5. On Fri, Jun 25, 2010 at 12:31 AM, sagare sagar.ekb...@gmail.com wrote: Hi Torsten,    Thanks for the reply so you mean to say i can select any

[android-developers] Re: Which android device to target for Android development?

2010-06-25 Thread sagare
run that much better. For example, the G1, comes with 1.5 but you can install 2.1.  However, someone else might have a better suggestion. On Fri, Jun 25, 2010 at 1:46 AM, sagare sagar.ekb...@gmail.com wrote: Hi Migules,  Thx a lot for the reply where can get features that were added

[android-developers] Android Application design?

2010-06-25 Thread sagare
Hi All, I am a newbie in android and i had some questions 1) Can i use some design pattern like MVC or something in my android application I this I mean to say I have a controller which is called by activities and controller decides which activity to show something on this lines. Is this

[android-developers] Re: Which android device to target for Android development?

2010-06-25 Thread sagare
stuck with 1.0 to 1.6... On 25 jun, 11:16, sagare sagar.ekb...@gmail.com wrote: Hi Miguel,    Thx a again for you valuable response anyone please tell me on the device selection i.e. which device either ADP1, ADP2 or droid to use for testing and dev and can ADP1 or ADP 2 have android OS

[android-developers] Re: Which android device to target for Android development?

2010-06-25 Thread sagare
... On 25 jun, 12:13, sagare sagar.ekb...@gmail.com wrote: Hi MobDev,    Thx a lot so it means I cant go with using Android developers phone 1 or Android Developers phone 2 and i have to use Droid/ Milestone rt? Thanks, Sagar On Jun 25, 3:00 pm, MobDev developm...@mobilaria.com wrote

[android-developers] Re: Which android device to target for Android development?

2010-06-25 Thread sagare
... On 25 jun, 12:13, sagare sagar.ekb...@gmail.com wrote: Hi MobDev,    Thx a lot so it means I cant go with using Android developers phone 1 or Android Developers phone 2 and i have to use Droid/ Milestone rt? Thanks, Sagar On Jun 25, 3:00 pm, MobDev developm...@mobilaria.com wrote

[android-developers] Getting wrong keyCodes in droid/Cliq?

2010-03-15 Thread sagare
Basically i am having a editText for entering a phone number. now i want special characters like (, ) and - to be inserted in the phone number also i want this characters to be insterted automatically as the user types the numbers.So I am having a edittext and a onKeyListener for it and in the

[android-developers] How can i launch another another android application from the current Application?

2010-03-08 Thread sagare
Hi All, I have developed 2 android applications and what i want is a way to launch my android application no2 from say my android application no 1 can anyone plz guide me with this. And tell me the extact intent i need to fire. Thanks a lot, Sagar -- You received this message because you

[android-developers] Re: How can i show a prefilled contacts screen on android 2.0

2010-03-08 Thread sagare
Hi, Android developers plz help me with this plz. Thanks a lot, Sagar On Mar 5, 6:35 pm, sagare sagar.ekb...@gmail.com wrote: Hi All, I know the code below opens the native Edit/Add contact screen Intent newIntent = new Intent(Intent.ACTION_INSERT, ContactsContract.Contacts.CONTENT_URI

[android-developers] How can i show a prefilled contacts screen on android 2.0

2010-03-06 Thread sagare
Hi All, I know the code below opens the native Edit/Add contact screen Intent newIntent = new Intent(Intent.ACTION_INSERT, ContactsContract.Contacts.CONTENT_URI); startActivityForResult(newIntent, 1); now i want this screen to be populated with some data in fields like name, phone number,

[android-developers] Local and Remote Services

2009-03-24 Thread Vipul Sagare
After spending few days with Services API, here are some of my questions. I would appreciate your answers and any leads to blogs/postings. I have already gone through API reference and APIDemos for AlarmService, LocalService, and RemoteService. - Are there any good sample applications for