[android-developers] Surface Created never called and so the thread never runs?

2011-09-12 Thread ruchira
I have been struggling with this issue since a long time.I am a newbie to android. I have done all the homework and gone through all the topics related to my issues but it did not help. My app code is based on lunar lander with modifications. I have got a splash screen which then displays a menu

[android-developers] Re: New Game Developer, need help starting

2011-09-12 Thread Oli
I can heartily recommend Mario's book if you're starting with an existing knowledge of developing in Java so need to learn some of the ideas behind writing a basic game framework. I've also found libgdx incredibly handy, although it's worth checking out AndEngine as well. Given your question

[android-developers] apk android 2.2 to 2.1

2011-09-12 Thread puppystad
Hy, I want to download use a android 2.2 app, but i have android 2.1. When i ll install the app ther is a parseer error. Is ther a converter from 2.2 to 2.1 apk? Thanx -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Live streaming on Android

2011-09-12 Thread K.Srini
Hi, I'm trying to develop an app on android that can capture and stream live video from Android device to server and again from the server to other Android device over RTP. I'm using MediaRecorder API and to capture video using H264 format. I'm able to successfully stream the packets from the

[android-developers] Accessory Developer Kit on any phone running 2.3.4

2011-09-12 Thread John Windberg
My T-Mobile G2 has been upgraded to Gingerbread 2.3.4. That ought be enough to get the accessory developer kit app working, but I'm getting messages about a missing library. Does anyone know what it really takes to get the adk demo app working? -- You received this message because you are

[android-developers] Taking a pic with tha camera but the image size is 0 KB

2011-09-12 Thread José Carlos
favorite share [fb] share [tw] I have made a demo to make a pic with the cam, save the image, and then, in other activity show the las pic made it. This is OK with the emulator, but when I install my demo in a real phone, I can make the pic, but the file size saved is O KB. What happend?

[android-developers] Re: Android phone and Arduino ADK

2011-09-12 Thread jonwa
Ever get any more info? My t-mobile g2 just got upgraded to 2.3.4, and yet I can't get the adk demo to work, missing library. Same is true for my Galaxy tab. Seems only the one phone actually supports the adk, unless I'm missing something. On Aug 23, 7:47 am, hudvin hud...@gmail.com wrote: What

[android-developers] Need game devs for contracted job.

2011-09-12 Thread Tek Rx
I'm starting a group of games to host on a server computer. We will be using a pre-existing platform so that will be the easy part. We will be tweaking and adding parts to the game for greater social function. If you think you are the right person for this job, we will discuss a contract in

[android-developers] I have met some problems when run test Android project

2011-09-12 Thread Bich Hong
09-12 13:57:32.966: WARN/dalvikvm(1047): threadid=1: thread exiting with uncaught exception (group=0x4001d800) 09-12 13:57:32.996: ERROR/AndroidRuntime(1047): FATAL EXCEPTION: main 09-12 13:57:32.996: ERROR/AndroidRuntime(1047): java.lang.RuntimeException: Unable to start activity

[android-developers] How do I filter out applications from system packages

2011-09-12 Thread Taranasus
Alrright here's what I'm trying to do. I'm using this code: final PackageManager pm = getPackageManager(); ListApplicationInfo packages = pm.getInstalledApplications(PackageManager.PERMISSION_GRANTED); for (ApplicationInfo packageInfo : packages) { if ((packageInfo.flags

[android-developers] Re: Viewpager's current item

2011-09-12 Thread stephen
Grant, I think the reason might be that you can't rely on a one-to-one correspondence between the item ordering in the ViewPager's collection and order of your pages. Check out your PagerAdapter implementation and look to see how your page items are added to the collection in instantiateItem. An

[android-developers] Re: Emulator Help

2011-09-12 Thread moktarul anam
can u tell me ur ram size?. if less than 2GB then emulator will be very slow On Sep 11, 11:19 pm, Amol Sharma amolsharm...@gmail.com wrote: Hi all, i am new in this android development..i have recently installed Eclipse and Android SDK API 13.created a hello world application i

[android-developers] Re: auto starting application after boot complete

2011-09-12 Thread Ash
I followed this example for my application so that it will automatically start after Android OS boots up. http://www.androidsnippets.com/autostart-an-application-at-bootup I am not sure how to automatically restart the device if it crashes for any reason. Cheers -- You received this message

[android-developers] how can i create an option menu button at status bar

2011-09-12 Thread huangtiejun
Hi,All How can i create an option menu button at status bar, The cell like button after [Recent Apps] . Thanks for your time. -- 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] how can i create an option menu button at status bar

2011-09-12 Thread vijayakumar M
use horizontal scroll view. and try it. On Tue, Sep 13, 2011 at 10:39 AM, huangtiejun huangtiejun2...@gmail.comwrote: ** Hi,All How can i create an option menu button at status bar, The cell like button after [Recent Apps] . Thanks for your time. -- You received this message

[android-developers] Re: Android Market - Allow Automatic Updating

2011-09-12 Thread Zsolt Vasvari
Do you think Facebook cares to the impact to the network operators when they release an updated version of their app? Or Roxio? On Sep 13, 6:45 am, Mike Wendling mike.wendl...@gmail.com wrote: Impact on the wireless network.  It makes a difference to the mobile operator. On Sep 12, 3:32 am,

[android-developers] Re: Write assets

2011-09-12 Thread Zsolt Vasvari
Have you though of the assets being read only? Even the name suggests that it might be. On Sep 13, 12:29 pm, amon wu amon.wu1...@gmail.com wrote: Hi, My case 1: I am trying to write a file into folder 'Assets' for a test, but I cannot do it. My case 2: I write the into sdcard , then copy

[android-developers] Re: How to maintain session in Android

2011-09-12 Thread Ryan Mattison
Hey Christopher, There are a lot of ways. Simplest is to extend application, set this as your application in the manifest. Then initialize a class with getters setters to a hashlist. Create an accessor in your application class. When you want to access this cast getApplication from an

[android-developers] Re: Problem loading an HTML asset in WebView

2011-09-12 Thread harsh chandel
Hi try to get the file from assets manager AssetManager asm =getAssets(); asm.open(name of the file) Thanks Harsh On Sep 13, 6:33 am, Mark Murphy mmur...@commonsware.com wrote: Just for grins, try all lowercase (shopping) instead of mixed case (Shopping). On Mon, Sep 12, 2011 at

[android-developers] get diffrent response on touching event at diffrent part of back groung image

2011-09-12 Thread Sangam Yadav
Hi Members, I am new to Android Programming and have following query : How can we enable multiple touch on different parts of a background image. And each touch have different response For Example: If i have a background image (in background image there are two image 1.a big circle 2. a small

[android-developers] Re: auto starting application after boot complete

2011-09-12 Thread gjs
Hi, And the user may have other applications which also start up at boot time so your app may not necessarily 'on top' in the foreground first up after the lock screen anyway... Regards On Sep 13, 3:03 pm, Ash anan...@gmail.com wrote: I followed this example for my application so that it will

[android-developers] Re: auto starting application after boot complete

2011-09-12 Thread Ash
That is what my guess is. -- 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 to android-developers+unsubscr...@googlegroups.com

<    1   2   3