Re: [android-developers] Upgrade my Game Application

2010-09-06 Thread Sandeep Phansekar
Hi Just Change the *android:versionCode=1.1* present in the mainfest.xml file regards sandeep On Mon, Sep 6, 2010 at 5:39 PM, Dhrumil Shah dhrumilsh...@gmail.com wrote: I developed one game its code is here: *Testing.java* * package * com.paad.testing; * import *

Re: [android-developers] Re: Blutooth API Problem

2010-07-28 Thread Sandeep Phansekar
Hi Rahul, Basically i am trying to broadcast business card by bluetooth/wifi using android device. i know that all previous version like 1.5,1.6 etc not support the Bluetooth API Android 2.1 support BT API. but i want to exclude that pairing part on my project. my gmail id :

Re: [android-developers] Re: broadcast receiver issue

2010-07-23 Thread Sandeep Phansekar
thanks All [?] @Agus : can u plz expalin me how to do that in my project there are 5 classes -- 4 class file extend *Activity* -- mainly they display user interaction screen -- 1 class file extends *BroadcastReceiver -- *capture the incomming call and display/ launch the one of the activity. --

Re: [android-developers] Max number of bluetooth devices that can be paired?

2010-05-10 Thread Sandeep Phansekar
Hi you can pair max 7 device for proper functionality. -- Regards Sandeep On Mon, May 10, 2010 at 3:10 PM, guru guru.nav...@gmail.com wrote: Hi All is there any max limit that we can pair with bluetooth devices? How to check this limit.? when i tried to pair with more than 15 devices,

Re: [android-developers] View on Tabs in TabActivity

2010-04-22 Thread Sandeep Phansekar
Hi there r lots of example available for this solution just googling u find the solution. @Pankaj -- u working for which company ? actully i am serching the job in pune for android position. -- Regards Sandeep On Thu, Apr 22, 2010 at 4:50 PM, pawan nimje pawanni...@gmail.com wrote: Hey

Re: [android-developers] how to clear default option of an app if it is not present in settings-applications-manage applications

2010-04-21 Thread Sandeep Phansekar
Hi just chech the apps in settings-applications-manage applications menu Filter All Regards Sandeep On Wed, Apr 21, 2010 at 12:33 PM, Amit magic.man.a...@gmail.com wrote: Hi All, My question is how to clear default option of an app if it is not present in settings-applications-manage

Re: [android-developers] Re: Android Tablet SDK or Emulator

2010-04-19 Thread Sandeep Phansekar
Hi , there is Android tablet pc is available in the market. name is Tegra. but still that is not officially launch screen size 1024*800 all the docs api r available on the site Regards sandeep 2010/4/19 Károly Holczhauser holczhau...@gmail.com Thx 4 your answare ! On ápr. 14, 17:23, Kevin

Re: [android-developers] Can I compile an app in 1.6 and run it on a 1.5 device?

2010-04-14 Thread Sandeep Phansekar
Hi its possible. just make uses-sdk android:minSdkVersion=*4* / -- Regards Sandeep On Thu, Apr 15, 2010 at 9:11 AM, Moto medicalsou...@gmail.com wrote: I'm wondering if I can specify on the manifest uses-sdk android:minSdkVersion=3 / and compile it as Android 1.6. Initial issue is that

Re: [android-developers] Re: RotateAnimation - Stopping and starting again after every rotation

2010-03-29 Thread Sandeep Phansekar
Nithin just study the demo Rotation code present in APIDEMO example. u need to change just one value in that. -- Regards Sandeep On Mon, Mar 29, 2010 at 2:24 PM, skink psk...@gmail.com wrote: Nithin wrote: Hi, I am rotating a view using rotateAnimation with this code new

Re: [android-developers] How to download an xml file from url in android

2010-02-25 Thread Sandeep Phansekar
want to just download ? or parse the file ? -- Regards Sandeep On Thu, Feb 25, 2010 at 3:39 PM, kavitha kavith...@gmail.com wrote: Hi All, Please tell how to download an xml file from url connection in android? Thanks Kavitha -- You received this message because you are subscribed to

Re: [android-developers] How to download an xml file from url in android

2010-02-25 Thread Sandeep Phansekar
the file then parse it i need to download bcoz when the application launches second time,,i need to use stored file without re-downloading On Thu, Feb 25, 2010 at 3:47 PM, Sandeep Phansekar sandeep.phanse...@gmail.com wrote: want to just download ? or parse the file ? -- Regards

Re: [android-developers] android.speech.action.RECOGNIZE_SPEECH activity not found

2010-02-23 Thread Sandeep Phansekar
plz explain u r problem with more details -- Regards Sandeep On Tue, Feb 23, 2010 at 8:58 PM, Mukesh kumar mukesh.j...@gmail.com wrote: when we call Intent intent = new Intent(android.speech.action.RECOGNIZE_SPEECH); startActivityForResult(intent, 0); After that show Exception: Activity

Re: [android-developers] Tab Bar in Android

2010-02-17 Thread Sandeep Phansekar
Hi used ImageButton with AbsoluteLayout ImageButton android:id=@+id/Button1 android:layout_width=64px android:layout_height=wrap_content android:layout_x=0px android:layout_y=370px android:background=@drawable/image1/ may this help you. -- Regards Sandeep On Thu, Feb 18, 2010 at 11:00 AM,

Re: [android-developers] Flash file android

2010-02-09 Thread Sandeep Phansekar
try admob On Tue, Feb 9, 2010 at 4:10 PM, Narendra Bagade bagadenaren...@gmail.comwrote: Hi all, For advertisement in my app ,I want to use flash file . Can anyone know how to create flash file in android Or how o use exisiting flash file in Android app. -- Regards, Narendra B

Re: [android-developers] Re: WebView

2010-02-09 Thread Sandeep Phansekar
add following in your *manifest.xml* file uses-permission android:name=*android.permission.INTERNET* / -- Regards Sandeep On Wed, Feb 10, 2010 at 8:51 AM, Breezy mbre...@gmail.com wrote: Does your layout XML look like this? LinearLayout xmlns:android=http://schemas.android.com/apk/res/

Re: [android-developers] System.out.println(...) statements within the onCreate

2010-02-09 Thread Sandeep Phansekar
Instant of System.out.println(...) use Log.e( class/method name ,Error message); And view the output in Logcat in Eclipse by the menus: Window - Show View - Other - Android - Logcat On Tue, Feb 9, 2010 at 9:07 AM, eehksar eehk...@gmail.com wrote: Hi All, Am a newbie... could anyone

Re: [android-developers] Showing image from Url

2010-02-08 Thread Sandeep Phansekar
add following in mainfest file uses-permission android:name=*android.permission.INTERNET* / On Sat, Feb 6, 2010 at 1:40 PM, pankaj nigam p.niga...@gmail.com wrote: Hi, i want to display an image from URL,i found one example from forum .but it doing nothing. i m sending the code plz