[android-developers] AssetManager.AssetInputStream throws IOException on big files

2011-12-22 Thread Yongce
Are there any google guys? Please review the issue http://code.google.com/p/android/issues/detail?id=37. It's a serious issue. Almost 4 years passed, but this issue is still there! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
I believe I finally solved the problem. What happened is that I was getting location updates after I tried to determine the route the user was going to take, and that led to a problem, so you were correct, the error I was focusing on was useless, there was a logic error that was causing my problem

Re: [android-developers] Corrupted pictures from camera

2011-12-22 Thread Michael Banzon
If you need help/testing I have a Desire S - I've run into this issue with some apps - and it is quite annoying! On Thu, Dec 22, 2011 at 1:14 PM, Mark Murphy wrote: > I am trying to inexpensively get my hands on an HTC Desire S to try to > track down what is going on. This may take some time. > >

[android-developers] Re: Android custom ImageView fade animation

2011-12-22 Thread AlexBonel
Has looked through your code and saw one big perfomance issue: protected void onDraw(Canvas canvas) { Paint foreground = new Paint(Paint.ANTI_ALIAS_FLAG); ... } It takes too much time when your try to allocate memory for Paint object. If you work with animation it always calls invalidate() me

[android-developers] Re: getColumnIndex exception

2011-12-22 Thread Sudeep
I got the solution The exception is thrown if colunindex string name is appended with table alias On Dec 22, 6:38 pm, Sudeep Jha wrote: > Hi All, > > I am getting the following exception each time I am accessing the columns > in Database. > Though application is not crashing , but still wants to

Re: [android-developers] Re: The accelerometer reading looks odd

2011-12-22 Thread Christopher Van Kirk
Seems like your device is broken. On 12/23/2011 11:26 AM, Yang Bo wrote: Could anyone help on this ? Thanks 在 2011-12-22 下午5:02,"Yang Bo" > 写道: Hi, I am trying to read the device accelerometer when the phone is placed on a desk with screen up,I ex

[android-developers] Re: Error while Creating the Two tables in Single DataBAse Android Application?

2011-12-22 Thread martypantsROK
you should post what errors you are getting. And wouldn't it be easier later to have the "Amount" field be a number rather than text? On Dec 22, 11:21 pm, niva k wrote: > i have Created a database in Sqllite Android Application.and i try to > add two tables in my Database But i have problem to c

[android-developers] Re: Client Rtsp in Android

2011-12-22 Thread tillegomezz
are you sure? I found this: "http://code.google.com/p/android/issues/detail? id=13715" and many people say it was fixed in 2.3.4 On Dec 22, 7:29 pm, lbendlin wrote: > Welcome to the club of sufferers. RTSP is broken since 2.2 -- You received this message because you are subscribed to the Google

[android-developers] Re: Fetching a GPS Network Location within a short time frame (10 seconds)

2011-12-22 Thread Diego Tori
Yeah, after adopting your advice, I was able to find a good starting last known location from all providers, then spin up my listener to do the comparison, at which after 10 seconds, it kicked off my message thread to shut everything down and send the result back to my callback. It was close enough

[android-developers] Re: The accelerometer reading looks odd

2011-12-22 Thread Yang Bo
Could anyone help on this ? Thanks 在 2011-12-22 下午5:02,"Yang Bo" 写道: > Hi, > I am trying to read the device accelerometer when the phone is placed > on a desk with screen up,I expect 0 on the x-axis and y-axis,-9.8 at > z-axis. But I get > x:11,y:-37,z:-24(decimal part ignore) What is th

Re: [android-developers] Add target similar to otapackage

2011-12-22 Thread Lei Bian
Hi ALL, I think i have found the right way: use the device release tool python and device recovery library. See: https://github.com/CyanogenMod/android_device_samsung_tuna/tree/ics/recovery https://github.com/CyanogenMod/android_device_samsung_tuna/blob/ics/releasetools.py https://github.com/co

[android-developers] Re: Anyone else notice that WebKit in ICS has some serious bugs?

2011-12-22 Thread Stephen Williams
We're seeing similar errors (Unknown chromium error: -6, CSS or .json files not loading in an embedded webview, text misaligned or missing, etc.) on 4.0.2 that rolled out to Samsung Galaxy Nexus. However, everything works fine in the 4.0.3 emulator and also now for a Galaxy Nexus S that just recei

Re: [android-developers] ICS/Galaxy Nexus Can't Loop Audio without GAP

2011-12-22 Thread Christopher Van Kirk
With respect, this is not the only example of fragmentation in the Android ecosystem. On 12/23/2011 8:39 AM, csyperski wrote: ICS can't loop audio seamlessly with more than one core, when using MediaPlayer->setLooping(true). This is a major bug that is causing problems for my applications. I

[android-developers] Re: Streaming link not working?

2011-12-22 Thread Thomas
SORRY MMS STREAM!!! Maybe thats why theres no reply :-) -- 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-developer

[android-developers] ICS/Galaxy Nexus Can't Loop Audio without GAP

2011-12-22 Thread csyperski
ICS can't loop audio seamlessly with more than one core, when using MediaPlayer->setLooping(true). This is a major bug that is causing problems for my applications. I have a sample project below demonstrating the issue. I have included a link to a very simple eclipse project that you can use to

[android-developers] Re: Client Rtsp in Android

2011-12-22 Thread lbendlin
Welcome to the club of sufferers. RTSP is broken since 2.2 -- 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-devel

[android-developers] Re: ADT 16.0.1 and library dependencies problems (Conversion to Dalvik format failed with error 1)

2011-12-22 Thread DoubleCheese
Open the eclipse preferences, go to Android > Build > There is a setting there to "Delay the DEX after copy" or something like that, uncheck that and try again. On Dec 22, 12:48 pm, Viktor Bresan wrote: > Anyone? > > The problem is not fixed with the latest ADT release v16.0.1 > > Viktor. > > On

Re: [android-developers] Fetching a GPS Network Location within a short time frame (10 seconds)

2011-12-22 Thread lbendlin
Most consumer GPS don't even provide data more often than once a second. -- 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

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
I will test that tonight but tomorrow I will make two videos on YouTube so you can see how it should work. Thank you for your patience. On Dec 22, 2011 6:20 PM, "TreKing" wrote: > On Thu, Dec 22, 2011 at 4:36 PM, James Black wrote: > >> The program doesn't continue so it wouldn't help to get rid

Re: [android-developers] Fetching a GPS Network Location within a short time frame (10 seconds)

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 5:04 PM, Diego Tori wrote: > What I want to know is after I fetch the last known location as my > initial best location and kick off my thread, how do I set up the > coarse criteria so that I receive a more accurate one than the initial > one (in order to compare the two),

Re: [android-developers] Messaging APP force close

2011-12-22 Thread TreKing
If this is a bug report for the stock email app, this would go here, I guess: b.android.com - TreKing - Chicago transit tracking app for Android-powe

Re: [android-developers] Regarding Web Services Development in Android

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 3:14 AM, kiran wrote: > How to search a record in database using Web Services This has nothing to do with Android. - TreKing

Re: [android-developers] how to convert .jre games into android format

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 5:50 AM, Samron wrote: > how to convert .jre games into android format. Port it. - TreKing - Chicago transit tracking

Re: [android-developers] Android Market - Why does my first App say it is only available to 18 devices?

2011-12-22 Thread YuviDroid
The problem is with android:minSdkVersion="14" . API 14 is Ice Cream Sandwich...which is not available to many devices right now (actually officially I only know 2..Galaxy Nexus and Nexus S). You can lower the minSdkVersion to 3 or 4 (Android 1.5 or 1.6), but make sure you are not using any APIs

Re: [android-developers] Android Market - Why does my first App say it is only available to 18 devices?

2011-12-22 Thread Kostya Vasilyev
Minimum sdk version is set to 14 Android 4.0), is that what you really intended? 23.12.2011 3:10 пользователь "Stuart B" написал: > Can anyone help me on this? I get this message, but I want my app on > all devices. > > Supported Devices > This application is only available to devices with th

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 4:36 PM, James Black wrote: > The program doesn't continue so it wouldn't help to get rid of the > dialog. Once that section finishes getting some routes it will get rid of > the dialog and zoom. > > This is where I get and nada. > So ... this has nothing to do with the m

Re: [android-developers] Password app

2011-12-22 Thread Kristopher Micinski
On Thu, Dec 22, 2011 at 11:09 AM, poiuytrez wrote: > Hello, > > I have some experience in Android development but this time I would like to > create some kind of password app. Basically I need to show the app when the > user clicks on the power button. Do you have any idea where should I begin ? >

[android-developers] Client Rtsp in Android

2011-12-22 Thread tillegomezz
I'm triying design a Client for Rtsp Streamming (Not Http Streamming), but I get a "Error Msge" and I don't know what happen. That is my Code: Class: "VideoViewActivity" http://www.pastie.org/3059760 18 Lines XML: Manifiest File http://www.pastie.org/3059773 23 Lines that is all !!! any one hav

[android-developers] Re: Accessing to Canvas's parent

2011-12-22 Thread Sudhi Hn
Hey guys good work On Dec 21, 11:28 pm, Gilberto Cuba R wrote: > Hello colleagues, > > I'm trying to simulate the HTML5 Canvas behaviour on Android. In > order to achieve this, I have created several classes that inheritate > from View, and therefore have "THEIR OWN" canvas, wich is not shared, >

[android-developers] Re: Offline Maps Request

2011-12-22 Thread lbendlin
Offline maps are only available in the Google Maps application. This is totally unrelated to the Google API which currently explicitly forbids cacheing. -- 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] Re: uses-feature glEsVersion

2011-12-22 Thread Marc Van Daele
Have you been able to solve this issue? I'm having the same issue right now. I don't find a matching android:name so I don't think that's the solution. I want to create two apk's, one supporting openGL 2:0 (having a higher version) and a second one for the others. But the android market says that

[android-developers] Android Market - Why does my first App say it is only available to 18 devices?

2011-12-22 Thread Stuart B
Can anyone help me on this? I get this message, but I want my app on all devices. Supported Devices This application is only available to devices with these features, as defined in your application manifest. Screen layouts: SMALL NORMAL LARGE XLARGE Required device features android.hardware.to

[android-developers] Re: Data written to SQLite database not immediately available

2011-12-22 Thread lbendlin
it's not a bug, that's how SQLite works. You can't have concurrent writes. Not sure how the content provider buffers this but if you do plain SQLite you are basically blocking the database with each write, and you need to use semaphores to manage that. -- You received this message because you

[android-developers] Fetching a GPS Network Location within a short time frame (10 seconds)

2011-12-22 Thread Diego Tori
I'm trying to set up a quick and dirty GPS lookup via LocationManager which fetches a network location (within 500 meters) every half second for ten seconds. In other words, I'm just trying to find the correct coarse Criteria settings and the correct logic to stop checking after 10 seconds of no be

[android-developers] Messaging APP force close

2011-12-22 Thread EricWei
Hi all, i use messaging app that it happened a problem. When phone has above a message, user use operation:(Messaging APP->New message->rotate phone from Anti-clockwise 90 degrees and Clockwise 90 degrees->Press Back key to Home screen) Operation Repeatedly about 70 times, phone has found -

[android-developers] Error while Creating the Two tables in Single DataBAse Android Application?

2011-12-22 Thread niva k
i have Created a database in Sqllite Android Application.and i try to add two tables in my Database But i have problem to create that Database.First Table only Created.AnyBody Help me Thanks in Advance! package com.android.cdtech; import java.sql.SQLException; import android.content.ContentValu

[android-developers] Can't see "Hello World" text on hello_avd screen ?

2011-12-22 Thread Albert Pi
I use Eclipse 3.6.1 and Android 4.0.3 (API 15) on Windows XP/Dell optiplex 755 has 4GB Memory. I had no issue to compile "Hello World" program and to create "my_avd". When I ran program, my emulator only took a few minutes to show up then I saw "lock" icon & Android, after I click "menu" from the

[android-developers] record video from screen activites in android

2011-12-22 Thread raju kunche
is it possible in android to create a video from screen activities? in my app i am running animations for some time i need to create all these things as video Please give me some suggestions to do that -- You received this message because you are subscribed to the Google Groups "Android De

Re: [android-developers] Re: How can apps sending and receiving SMSs be visible on the market for the new Galaxy Tablets?

2011-12-22 Thread Kostya Vasilyev
While I don't have a workaround - sorry - but this particular device is quite weird... FWIW, this is what I recently ran into, it has to do with WiFi: http://wp.me/pSrdQ-lg Have you tried calling SmsManager.getDefault() and checking for null? -- Kostya 22 декабря 2011 г. 16:48 пользователь

[android-developers] Android 4.0 Emulator issue

2011-12-22 Thread Manish
Hi All, I have successfully built the Android 4.0.3 master branch downloaded on 21st December 2011. The compilation completes without any issues after following the steps mentioned at http://source.android.com/source/downloading.html and http://source.android.com/source/building.html. However, o

[android-developers] Cancelar ligacao

2011-12-22 Thread mdmota
Estou fazendo ligacao para um numero usando a chamada : startActivity(new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + ph_number.getText(; Gostaria de saber como eu cancelo a chamada durante a ligacao só que via codigo e nao pelo botao de desligar ligacao do cel. att -- You received this

[android-developers] Offline Maps Request

2011-12-22 Thread RJOberg
I keep looking around and running into dead ends. Back in June I read a few posts about how Google was working on making their maps available offline and was hoping someone had new insight into how this was progressing. The project I am working on will be deployed on tablets that will not have any

[android-developers] Publishing a APK created with Dreamweaver 5.5

2011-12-22 Thread George Redman
I have developed an app with dreamweaver5.5 and have added my private key and the public key. However the apk just hangs in Chrome when I try to upload and comes up with a message saying "The server could not process your apk. Try again." I have searched the net and loads of people are having the s

[android-developers] Email settings and device admin

2011-12-22 Thread Allan Miller
Hi, this is in reference to another post - I tried to put it in that thread but it didn't seem to stick: http://groups.google.com/group/android-developers/browse_thread/thread/6470376d0a2f39f9/b2f88a95364f235d?lnk=gst&q=exchange+server#b2f88a95364f235d I need to do the same thing as progtad. I u

[android-developers] Regarding Web Services Development in Android

2011-12-22 Thread kiran
hi, How to search a record in database using Web Services, while I used Android as client side application in which i need to enter some text in edit-text (as name of records) such that if it match with that(which we entered) record it has display the all records from the data base. -- You rece

[android-developers] passing data between browser's javascript and activity

2011-12-22 Thread Usman
How do we pass and receive data between browser's html/javascript and an Activity? I am able to call an activity from an html file from the Android browser app by using a scheme in manifest. i-e . Now I want the activity to return data which I can then display/use on the web page's html. I am awar

[android-developers] android hardware sensors information required

2011-12-22 Thread Tom Kua
I am looking at implementing few hardware sensor with android on a custom board based on Ti - OMAP processor. Below is the list of sensors that I want to implement : Accelerometer Compass Humidity Pressure Light / Ambient proximity FastIrDA Where can I locate a list of hardware sensor chipset inf

[android-developers] Password app

2011-12-22 Thread poiuytrez
Hello, I have some experience in Android development but this time I would like to create some kind of password app. Basically I need to show the app when the user clicks on the power button. Do you have any idea where should I begin ? I tried to browse the documentation but I could not find an

[android-developers] simulating mouse on gingerbread 2.3.3

2011-12-22 Thread Vlad
Hi guys, I'm interested in simulating a mouse on a mobile device, but unfortunately, as far as i can tell, there is no support for a mouse pointer on gingerbread. so i was wondering, is it achievable on the service-app level ( i mean, without applying it on the android source and recompiling the

[android-developers] how to set property of gsm phone number

2011-12-22 Thread ravi
In Settings--> About Phone--> Status --> My Phone Number is showing as unknown i am a newbie tried installing a terminal on my rooted android phone(2.3.7) and have checked getprop there are many properties available but I don't find any property that stores the sim phone number in this list. cou

[android-developers] emulator: WARNING: Unable to create sensors port: Unknown error

2011-12-22 Thread snowgoon
Hi all I keeping getting this message very time i try and run my app. I've had my app running but know i keeping get this mess!! Please please please help!! Thanks Snowgoon , PS I've un-installed everything and re stalled (I am going to create a new work space see what happens) ;-( [2011-12-2

[android-developers] Re: ClassNotFoundException on Market developer console

2011-12-22 Thread Dima Vasilkov
android app fails to load on some phones in pathclassloader -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] adk SGS2

2011-12-22 Thread Charif Mahmoudi
somone know how to rebuild ADK libraries for arduino ?? -- 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-developer

[android-developers] how to convert .jre games into android format

2011-12-22 Thread Samron
how to convert .jre games into android format. Can i get some help. -- 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

[android-developers] Can't see "Hello World" on hello_avd screen ?????????

2011-12-22 Thread Albert Pi
I use Eclipse 3.6.1 and Android 4.0.3 (API 15) on Windows XP/Dell optiplex 755 has 4GB Memory. I had no issue to compile "Hello World" program and to create "my_avd". When I ran program, my emulator only took a few minutes to show up then I saw "lock" icon & Android, after I click "menu" from the

[android-developers] Data written to SQLite database not immediately available

2011-12-22 Thread Erik
My app has a content provider which stores its data in a SQLite db. I have a thread which is busy inserting rows into this content provider. I have another thread which inserts some rows into the content provider and then signals the first thread. When the first thread sees the signal, it stops

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
The program doesn't continue so it wouldn't help to get rid of the dialog. Once that section finishes getting some routes it will get rid of the dialog and zoom. This is where I get and nada. On Dec 22, 2011 5:03 PM, "TreKing" wrote: > On Thu, Dec 22, 2011 at 3:52 PM, James Black wrote: > >> Thi

[android-developers] Re: Android custom ImageView fade animation

2011-12-22 Thread Seb
Bump: Can anyone help? If I define an imageview in my activity and then set an animation for it, then it plays fine. But if I define an image view as a member in my custom view and then try to play its animation, it does not play. Any help is appreciated... On Dec 18, 4:59 pm, Seb wrote: > I am c

Re: [android-developers] Re: Memory leaks when using bitmaps in android

2011-12-22 Thread Miguel Morales
Working with bitmaps is a little hard on Android. One thing to do is to resize or pack them so that they take up less memory. Another thing you may want to look into is to reuse the bitmap object/memory. You may have to do this in native though. As other have pointed out System.gc() just gives the

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 3:52 PM, James Black wrote: > This is what I am seeing, Get rid of the dialog, then use the zoom buttons to zoom in ... - TreKing

[android-developers] Re: 4.0 Action Bar - remove app title.

2011-12-22 Thread Nathan
Oh, and using the "always" tag even works without removing the app title. The app title actually does fit in landscape mode and disappears in portrait mode. So if someone else was thinking of pulling out the title to make room, you can probably skip it. Nathan -- You received this message becau

Re: [android-developers] Re: 4.0 Action Bar - remove app title.

2011-12-22 Thread Mark Murphy
On Thu, Dec 22, 2011 at 2:38 PM, Nathan wrote: > But here is what I found. By changing some of the menu items from > android:showAsAction= "ifRoom" to "always", I can get it to show four > action buttons, plus the overflow button when there is no hardware > menu key. You'd think "ifRoom" would wor

Re: [android-developers] Re: Native SIP Supported on all ICS Devices?

2011-12-22 Thread Mark Murphy
On Thu, Dec 22, 2011 at 3:03 PM, Shaun wrote: > So in order to guarantee SIP support, we need to include our own SIP > stack to circumvent a carrier/device maker disabling the native SIP > stack written by Google? Sorry, what I meant by carriers disabling SIP support is not allowing users to set

[android-developers] Re: Native SIP Supported on all ICS Devices?

2011-12-22 Thread Shaun
So in order to guarantee SIP support, we need to include our own SIP stack to circumvent a carrier/device maker disabling the native SIP stack written by Google? Doesn't this make it not worth Google's time to write in SIP support, because why write an application that uses a feature that only work

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
I see basically a graphic of the world but in one the map zooms in but in the other it has this error and does nothing. I will send two screenshots when I get home to show. On Dec 22, 2011 1:38 PM, "TreKing" wrote: > On Thu, Dec 22, 2011 at 12:21 PM, James Black wrote: > >> On my map view I see

[android-developers] Re: 4.0 Action Bar - remove app title.

2011-12-22 Thread Nathan
On Dec 22, 4:11 am, Mark Murphy wrote: > On Thu, Dec 22, 2011 at 1:20 AM, Nathan wrote: > > Half of the Actionbar is still set aside for the nonexistent title. > > And the nonexistent tabs, the nonexistent Spinner, and the nonexistent > custom navigation. Probably they are leaving that space in c

[android-developers] Re: How to replace GLSurfaceView with TextureView in Android Ice Cream Sandwich?

2011-12-22 Thread Brad Grimm
Brilliant!  I must have been thinking too hard about it, because what you wrote really is simple.  I was able to get it working and it works like a charm. Thank you! On Dec 22, 10:16 am, Romain Guy wrote: > It is definitely an option, that's whatSurfaceTextureis for. It's very simple: > > Create

Re: [android-developers] simulate hte speed for amdroid phones

2011-12-22 Thread poncho
On 12/21/2011 05:36 AM, Shabnaz wrote: hi Iam trying to develop an app for accident detection and notification system. For tat I need to get the speed and acceleration of the mobile phione equpped with android how do I simulate ht espeed of the phone using the emulator because the mibi

Re: [android-developers] debugging on Kindle Fire, sdcard access

2011-12-22 Thread Mark Murphy
On Thu, Dec 22, 2011 at 1:32 PM, alexb wrote: > Has anyone tried this? Here is the problem: once you connect Kindle > Fire to PC via USB, you can access sdcard from PC only. As this is the > way to debug on Kindle, my app has no read/write access in this mode > thus effectively disabling debugging

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 12:21 PM, James Black wrote: > On my map view I see the continents Wait ... so in both you see the map? But not when you zoom? You're losing me. - TreKing

[android-developers] debugging on Kindle Fire, sdcard access

2011-12-22 Thread alexb
Has anyone tried this? Here is the problem: once you connect Kindle Fire to PC via USB, you can access sdcard from PC only. As this is the way to debug on Kindle, my app has no read/write access in this mode thus effectively disabling debugging. Without USB it seems working fine. My several request

[android-developers] pool party?

2011-12-22 Thread bob
Why do all these modern sound libraries like OpenAL and Android's SoundPool want you to stick your audio in a soundpool? Why can't the audio exist as separate objects? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: Mysterious crash with Android Monkey

2011-12-22 Thread alexb
On the other hand, this can be a crash in a different app, can't it? Because my app stays running and seems working fine. I am using: adb shell monkey -p -v -v --pct-appswitch 0 --pct-flip 0 --pct-nav 0 -s 1 20 Is this the right way to prevent switching to other apps? On Dec 22, 9:58 am, alex

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
No, only one works, whether in debug or release. On my map view I see the continents but only on one does it zoom down to the level I requested. On Dec 22, 2011 1:05 PM, "TreKing" wrote: > On Thu, Dec 22, 2011 at 11:52 AM, James Black wrote: > >> In eclipse I will do "Debug as" on each and put t

[android-developers] Re: Make own voice input method

2011-12-22 Thread Zwiebel
Yes, I thought that it won't be easy... :) But it would be nice, if I can make it, with a lot of work too... :) On dec. 22, 00:07, Jim Graham wrote: > On Wed, Dec 21, 2011 at 02:15:46PM -0800, Zwiebel wrote: > > I have decided, that I will try to start to make a new voice input > > program, with

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 11:52 AM, James Black wrote: > In eclipse I will do "Debug as" on each and put them on my phone, so the > same key is used. > Do they both work in this case? When you're debugging using the debug certificate.

[android-developers] Mysterious crash with Android Monkey

2011-12-22 Thread alexb
I am testing my app with Android Monkey and after a while it crashes. Does anyone have a clue? Here is the log excerpt: . W/WindowManager( 1103): Failed looking up window W/WindowManager( 1103): java.lang.IllegalArgumentException: Requested window null does not exist W/WindowManager( 1103):

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
I just checked and my JDK version is 6.0.29. On Dec 22, 2011 12:52 PM, "James Black" wrote: > Sorry, I misunderstood. > > In eclipse I will do "Debug as" on each and put them on my phone, so the > same key is used. > > Then I have Eclipse export and sign, both with the same key. > > I follow ide

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
Sorry, I misunderstood. In eclipse I will do "Debug as" on each and put them on my phone, so the same key is used. Then I have Eclipse export and sign, both with the same key. I follow identical steps for both, but only one works. Thank you for any suggestions. On Dec 22, 2011 12:00 PM, "TreKin

Re: [android-developers] Issue with SDK installation

2011-12-22 Thread Jagadeesh Koganti
Sorry I meant version 16. Its the latest version available in Andriod website. Let me know if you have any solution for this issue. On Wed, Dec 21, 2011 at 10:08 PM, Michael Leung wrote: > > 1.6 is too old, please try to install the latest one. > On Thu, Dec 22, 2011 at 5:48 AM, Jagadeesh Kogant

[android-developers] Soft keyboard issue

2011-12-22 Thread Neilz
Yet another soft keyboard issue...! I start an activity with the following flags: android:windowSoftInputMode="stateHidden|adjustPan" This means that upon startup, the soft keyboard is not displayed. Clicking into the EditText brings up the keyboard as expected. >From this activity, I open up a

Re: [android-developers] Re: How to replace GLSurfaceView with TextureView in Android Ice Cream Sandwich?

2011-12-22 Thread Romain Guy
It is definitely an option, that's what SurfaceTexture is for. It's very simple: Create an OpenGL context Generate an OpenGL texture name Create a SurfaceTexture with the texture name Pass the SurfaceTexture to Camera Listen for updates On SurfaceTexture update, draw the texture with OpenGL using

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 10:50 AM, James Black wrote: > Yes, they share the same mapview XML file, where the Google maps key is. No, are your apps *signed with the same key*? This is different then the maps API key. This is what you use when you build your APK for distributing on the Android Mark

[android-developers] Re: How to replace GLSurfaceView with TextureView in Android Ice Cream Sandwich?

2011-12-22 Thread Brad Grimm
Thanks Romain. I really just want to swap out the pixel shader on the SurfaceTexture's OpenGL texture so I can do some filtering on the camera preview. But it sounds like that isn't an option. I have used ColorMatrixFilters on the view itself and they work quite well, just not powerful enough f

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread James Black
Yes, they share the same mapview XML file, where the Google maps key is. That is why I am confused. On Dec 22, 2011 11:19 AM, "TreKing" wrote: > On Wed, Dec 21, 2011 at 10:29 PM, James Black wrote: > >> The free version of my application has this error, so it can't create the >> map overlay, wher

Re: [android-developers] Two projects use one library, one fails with "Couldn't get connection factory client"

2011-12-22 Thread TreKing
On Wed, Dec 21, 2011 at 10:29 PM, James Black wrote: > The free version of my application has this error, so it can't create the > map overlay, whereas the pay version works properly. The error in the post title is benign - it does and means nothing, AFAIK. I get it all the time. Are they both

Re: [android-developers] Add target similar to otapackage

2011-12-22 Thread TreKing
On Wed, Dec 21, 2011 at 7:55 PM, 卞磊 wrote: > How can i build this package? Or is there a guide for how to add a > target similar to otapackage? > Wrong list. Go to the documentation and find the group most appropriate for what you're trying to do. ---

Re: [android-developers] pagination with numbering

2011-12-22 Thread TreKing
On Tue, Dec 20, 2011 at 4:51 AM, yogesh...@acusis.com wrote: > i want to do pagination with numbering(dynamically allocating the number > of pages) navigate to specific page clicking on number > Cool, thanks for sharing. I want to do swipe gestures and sexy animations. --

Re: [android-developers] Android Simple File Uploading in Server

2011-12-22 Thread TreKing
On Tue, Dec 20, 2011 at 10:00 PM, 181 wrote: > But my APK file is not getting installed in my phone, > Why not? > 1)should i add any extra codes to this (above) code? > You want us to read that code and tell you how to modify it? How about you play with it and determine what modifications you

[android-developers] Re: question not getting posted

2011-12-22 Thread Steve Geller
nevermind On Thu, Dec 22, 2011 at 10:51 AM, Steve Geller wrote: > Hello. I've posted a question about the new Nexus phone but it has not > gotten posted. Can you explain why? > > Thanks. > > Steve -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] question not getting posted

2011-12-22 Thread Steve Geller
Hello. I've posted a question about the new Nexus phone but it has not gotten posted. Can you explain why? Thanks. Steve -- 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.

[android-developers] Re: Trouble dismissing custom dialog

2011-12-22 Thread Streets Of Boston
Better is to use a DialogFragment. If you can't use Fragments, use the onCreateDialog(...) call-back returning the dialog created in addPCDialog and use 'showDialog(id)' and 'dismissDialog(id)' instead (or dialog.dismiss() in your click-handlers). -- You received this message because you are su

Re: [android-developers] Trouble dismissing custom dialog

2011-12-22 Thread TreKing
On Wed, Dec 21, 2011 at 7:21 PM, Alex Oh wrote: > However, once I press the edit button (dialog opens up, dismisses fine) > and click on the Add button, the dialog no longer closes when the "Done" or > "Cancel" button for the dialog shows up. > Why are you adding your own buttons into the dialo

[android-developers] Re: ADT 15.0.1 and library dependencies problems (Conversion to Dalvik format failed with error 1)

2011-12-22 Thread Streets Of Boston
What if you build JP, put it into a plain JAR and add this JAR to AL1 and AL2? -- 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 em

[android-developers] Re: ADT 15.0.1 and library dependencies problems (Conversion to Dalvik format failed with error 1)

2011-12-22 Thread Streets Of Boston
What if you build JP, put it into a plain JAR and add this JAR to AL1 and AL2? This may be more of an Eclipse issue than an Android one, since being dependent on a java-project will cause the source to be 'imported' (kind-of) and compiled into the depending projects (AL1 and AL2). -- You rece

[android-developers] getColumnIndex exception

2011-12-22 Thread Sudeep Jha
Hi All, I am getting the following exception each time I am accessing the columns in Database. Though application is not crashing , but still wants to find out the reason for exception being thrown. 12-22 19:02:38.398: E/Cursor(11669): java.lang.Exception > 12-22 19:02:38.398: E/Cursor(11669):

Re: [android-developers] [android-developer] How can we rotate image

2011-12-22 Thread TreKing
On Thu, Dec 22, 2011 at 2:07 AM, surabhi jain wrote: > plz send me source code. plz send me cash money. - TreKing - Chicago transit tracking app f

Re: [android-developers] Re: InputMethodManager and mServedView

2011-12-22 Thread nisha paghadaL
On Thu, Dec 15, 2011 at 5:19 AM, Sam wrote: > No one knows whats going on, what a pity. > > -- > 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

Re: [android-developers] launcher screen like android market

2011-12-22 Thread Jim Graham
On Thu, Dec 22, 2011 at 11:17:41AM -0200, Igor Nesralla Ribeiro wrote: > I want to know if anyone h?s a reference for how i make a launcher screen > like the "features" in android marketif this screen use imagebutton > ?!...what the type of this layout !? 1) Don't hijack an existing thread li

[android-developers] launcher screen like android market

2011-12-22 Thread Igor Nesralla Ribeiro
Hi, I want to know if anyone hás a reference for how i make a launcher screen like the "features" in android marketif this screen use imagebutton ?!...what the type of this layout !? Thanks in advance Igor -- You received this message because you are subscribed to the Google Groups "And

  1   2   >