[android-developers] Re: Participate in app promotion experiment

2010-05-23 Thread Maps.Huge.Info (Maps API Guru)
Latest results (9 participating apps): campaign | impressions | clicks | ctr +-++-- Punching for Health| 25594 |371 | 1.45 ArmaBoing | 20016 |298 | 1.49 My College Life Beta

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Zsolt Vasvari
Is this something new with 2.2? Because it looks like .WAV file playback no longer works on FroYo. I used be able to get my Vonage voicemails sent to me via e-mail and play them back on 2.1, but the one I got today didn't play back saying the .wav is unsupported. On May 23, 11:58 am, Moto

[android-developers] Re: what is the point of an internal broadcast receiver that is invoked explicitly by its classname?

2010-05-23 Thread joebowbeer
I believe these receivers can also be invoked through pendingIntent.send() See PendingPntent.getBroadcast() On May 20, 8:10 pm, Satya Komatineni satya.komatin...@gmail.com wrote: It is possible to create receiver tag with just a classname and no intent filters. The documentation indicates that

[android-developers] [Android 2.2] IMPORTANCE_EMPTY on process never set ?

2010-05-23 Thread Nicolas Thibaut
Hello, on froyo emulator (and a nexus one with big memory), the flag importance on the RunningAppProcessInfo seems to be never set. On android version 2.2 when you run an activity and press return, the glag is set to IMPORTANCE_EMPTY and the id in the associated RunningTaskInfo is zero. App

[android-developers] Android Market Place

2010-05-23 Thread zohar lerman
Is it possible to pass the android market place parameters for later use for example: request id? -- 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

[android-developers] Re: What's the localization language code for Turkish?

2010-05-23 Thread mot12
If you want your application to show turkish language even on those apps that do not have a turkish system locale, you need to put the logic to load the appropriate resources in your source code. Then users can choose the language from within your app. You will find pointers on how to do this on

[android-developers] Update view in listview

2010-05-23 Thread ls02
I need to frequently update listview row, What's the best way to find the row? I wonder how findViewById and findViewByTag work? Do they walk over all child views and check each view ID or tag? Because this could be very inefficient. Or they have some sort of hash map to quickly retrieve the

[android-developers] Certain apps not being shown in Android Market?

2010-05-23 Thread niko001
Hi, some of my apps are not being shown in the market after updating to 2.2 (for no obvious reason, doesn't seem to be based on whether they are paid/free apps or on their target/minsdk-value). I've seen users reporting the same issues with a variety of apps on other forums, so I'm not the only

Re: [android-developers] Update view in listview

2010-05-23 Thread Kostya Vasilyev
There are methods in ListView for getting the first/last visible row. I think if you iterated just over these, it would be fast enough. 23.05.2010 14:59 пользователь ls02 agal...@audible.com написал: I need to frequently update listview row, What's the best way to find the row? I wonder how

[android-developers] Re: Update view in listview

2010-05-23 Thread ls02
I understand I can walk through all children, but this is very bad approach, very inefficient and takes a lot of CPU time. When you need to update several child views in the list several times a second this drastically impacts the peformance. I need to retrieve the child view quickly using some

Re: [android-developers] Update view in listview

2010-05-23 Thread Mark Murphy
ls02 wrote: I need to frequently update listview row Why? What business problem are you trying to solve? -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android

[android-developers] How to brick an Android phone?

2010-05-23 Thread bschuhma
I know this sounds evil, but I assure you my intentions are good. I'm working on a personal security app and I want the phone to appear to be completely dead - no lights, no alerts, no screen activity, no vibration, etc. Would this most easily be accomplished by publishing high priority intents

Re: [android-developers] How to brick an Android phone?

2010-05-23 Thread Mark Murphy
bschuhma wrote: Would this most easily be accomplished by publishing high priority intents to handle everything, then just not handling them? I am assuming you meant: Would this most easily be accomplished by publishing high priority broadcast receivers to handle everything, then just

[android-developers] Re: Update view in listview

2010-05-23 Thread ls02
There is nothing fancy here. ListView is UI that needs to be updated when underlying data changes. Each listview item represents a separate independent object which state is frenquently changes an needs to be updated. So if there are 7-8 or more items visisble at the same time and each item can be

[android-developers] Re: Application with no title

2010-05-23 Thread John Gaby
Thanks for the reply. Your suggestion removes the title bar (which my solution also did), but when the onLayout method of my ViewGroup is called, it still tells me that the 'top' is 25 instead of 0 which it should be when there is not title bar. On May 22, 10:17 pm, pawan nimje

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
I'm seeing exactly the same problem as Mark Carter. I've followed the instructions on the reference pages exactly (at least as far as I can make out). The app project compiles fine and is able to use and inherit classes in the library project, but trying to run the (non-library) project in the

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Moto
Yes this is with 2.2. :( Man this seems a step back for Media in Android... NOT GOOD... On May 23, 3:18 am, Zsolt Vasvari zvasv...@gmail.com wrote: Is this something new with 2.2?   Because it looks like .WAV file playback no longer works on FroYo.  I used be able to get my Vonage voicemails

Re: [android-developers] Re: Update view in listview

2010-05-23 Thread Mark Murphy
ls02 wrote: So if there are 7-8 or more items visisble at the same time and each item can be updated every half second or so, I cannot each time walk through all visible items i nthe list to find the one that needs to be updated. This chokes all UI responsiveness and puts a lot of pressure on

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-23 Thread Yahel
Just a thought : What are the permissions listed under the require segment of your app in your manifest file and what screen resolution do you support in your apps ? One of my apps doesn't show in the market for lower screen resolution devices. The require part of the manifest file might also

[android-developers] Internet access security exception

2010-05-23 Thread Al
My app has the INTERNET permission but today I noticed a new bug report in my dev console: java.lang.SecurityException: Permission denied (maybe missing INTERNET permission) at org.apache.harmony.luni.platform.OSNetworkSystem.connectStreamWithTimeoutSocketImpl(OSNetworkSystem.java:-2) at

Re: [android-developers] Internet access security exception

2010-05-23 Thread Mark Murphy
Al wrote: My app has the INTERNET permission but today I noticed a new bug report in my dev console: java.lang.SecurityException: Permission denied (maybe missing INTERNET permission) at

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-23 Thread Hermes Pique
I'm having the same problem. Some users are reporting that one of our apps doesn't show up the Android Market with Froyo. Best, H. On May 23, 1:37 pm, niko001 ebs...@googlemail.com wrote: Hi, some of my apps are not being shown in the market after updating to 2.2 (for no obvious reason,

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Moto
Found even more issues... Before the media player could download continuously a lot of data before start was triggered. This allowed to set a big enough buffer before playback. Now it reaches a limit and does nothing... doesn't even let you know it has stopped downloading How is this

Re: [android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Mark Murphy
Moto wrote: Found even more issues... Before the media player could download continuously a lot of data before start was triggered. This allowed to set a big enough buffer before playback. Now it reaches a limit and does nothing... doesn't even let you know it has stopped downloading

[android-developers] [Help] Anybody run Chrometophone in Android 2.2 Emulator successfully?

2010-05-23 Thread Vincent Tsao
i found Chrometophone here: http://code.google.com/p/chrometophone/. I'm trying to setup this project in Android 2.2 Emulator, but i can't setup a Google Account in Emulator, so i can't Resister Device. anybody run this project in emulator successfully? Any instructions? -- You received this

[android-developers] Is phone low memory could lead to Browser SIGSEGV in libwebcore.so?

2010-05-23 Thread Wang He
I got many cases that browser has auto exited when user is use as normal. After check the logs, all code has SIGSEGVed inside libwebcore.so, it always hard to address the issue code as it is happened inside native C code. But on the other hand, I notice this kind of browser crash always happened

[android-developers] Noise Alert getMaxAmplitude

2010-05-23 Thread Open
I've been looking at the Noise Alert code http://bit.ly/aHdbTO to see how to monitor the amplitude of sound recorded by MediaRecorder. Noise Alert uses mRecorder.getMaxAmplitude() to determine the maximum amplitude seen since the last method call. public double getAmplitude() {

Re: [android-developers] Connection is broken error when try to connect to remote HSQLDB web database

2010-05-23 Thread Tim
Mark, I have to say that up until now I have had much success using JDBC and Android. I know many who would disagree with your preference for REST web services, however, I think that is an academic argument. The fact is that I am using a legal Java statement to load a JDBC driver and

[android-developers] Re: Best practices for creating multiple app versions from a single codebase?

2010-05-23 Thread jk-bk-vk
I think for many situations the SDK's library project mechanism solves the originally posted problem (without additional plug-ins, scripts, or the ant learning curve)... http://developer.android.com/intl/fr/guide/developing/eclipse-adt.html#libraryProject There is an ongoing thread in this group

Re: [android-developers] Connection is broken error when try to connect to remote HSQLDB web database

2010-05-23 Thread Mark Murphy
Tim wrote: I have to say that up until now I have had much success using JDBC and Android. JDBC is not designed for fragile, latency-ridden data connections. For WiFi, you may be able to get away with it, assuming your users' feet are nailed to the floor, so they cannot wander away in the

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread JP
On May 23, 8:35 am, Mark Murphy mmur...@commonsware.com wrote: Moto wrote: First, please note: this is Sunday. Expecting a response from anyone, let alone a Google employee, is a bit much on a weekend. Second, if you think you have found bugs in Android, create a sample project that

Re: [android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Mark Murphy
JP wrote: Hmmm, I would suggest moto has been around the block enough to be familiar with the issue tracker... I realize that. I'm not quite sure what Moto is expecting to happen given the posts to date. With that said, uhm, rhetorically asking, hasn't Android outgrown the goto b.android.com

[android-developers] Re: Is Google working on the Bluetooth bug? Any estimated date of completion?

2010-05-23 Thread BobG
So if I want to connect and read from a bluetooth stream on an adp2 phone running 1.6, I need to wait for some kind soul to write a backport from 2.2 to 1.6 and publish it so I can compile with the backport jar? Or patiently wait for some kind HTC employee to work on a 1.6 to 2.0 port, then a 2.1

Re: [android-developers] Internet access security exception

2010-05-23 Thread Al
Mark Murphy wrote: Are you sure you have the permission in the proper spot in your manifest? I have not seen this error except when the permission element was missing or malformed. I'm absolutely positive. It's an irc app and would be useless without the INTERNET permission. -- You received

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
On May 22, 11:48 pm, Mark Carter mjc1...@googlemail.com wrote: I think the bug mentioned in my second post was due to (additionally) specifying the library as a project in the build path of MyApp. Something was expecting MyLibrary.apk to exist because of that (and because MyLibrary is an

[android-developers] Bluetooth question regarding observing a pairing

2010-05-23 Thread Jake Maui
Is there a way to observe a bluetooth pairing and then be aware of when the connection no longer exists? Basically I want to observe when my phone connects to another device and what that connection is dropped to that I may execute an action based on that connection. Thanks -- You received

[android-developers] Re: Android Library Project

2010-05-23 Thread Lance Nanek
The only time I've seen that Could not find otherproject.apk warning was in the same situation as mentioned above, when the project being run used an Eclipse, Java Build Path, Project dependency on the other project. If you want to double check that you don't have that, right click on the project

[android-developers] Android 2.2 SDK emulator and JIT?

2010-05-23 Thread Ecthelion
Hi, after downloading the new Android 2.2 SDK I tested some of my more CPU- intensive code with the integrated emulator, hoping to see some of the promised performance improvements also in the emulator. But to my disappointment the apps run just as fast/slow as with Android 2.1. Did I miss

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Moto
I'm well aware and familiar to b.android.com. The reason I don't post code is because of the amount of time it took me to get streaming working, specially AAC+ content. I would love to provide sample code but how do I do it in a safe manner? Maybe providing a sample apk would be enough? I'll

[android-developers] library projects

2010-05-23 Thread Greg Donald
On this page: http://developer.android.com/guide/developing/eclipse-adt.html#libraryProject It says: One library project cannot reference another A library cannot depend on another library. So how do I go about having my library project use a shared resource if it can't depend on any other

[android-developers] highlighting a coloured item in a ListView

2010-05-23 Thread Eurig Jones
I have a ListView component and its items are highlighted orange when clicked or selected with the trackball, as you would expect as this is the default behaviour. Some of my list items get coloured with setBackgroundColor(). These coloured items seem to hide the orange highlighting when clicked

[android-developers] library project returns wrong resource

2010-05-23 Thread Greg Donald
I have a library project that contains some bitmaps. The bitmaps are all 480x320, I triple-checked, twice. When I use my library project in another project it finds a bitmap for me, but not the one I'm calling. The bitmap it gives me is 48x48, not 480x320 like I'm expecting. The only thing in

Re: [android-developers] highlighting a coloured item in a ListView

2010-05-23 Thread Mark Murphy
Eurig Jones wrote: I have a ListView component and its items are highlighted orange when clicked or selected with the trackball, as you would expect as this is the default behaviour. Some of my list items get coloured with setBackgroundColor(). These coloured items seem to hide the orange

Re: [android-developers] Re: Best practices for creating multiple app versions from a single codebase?

2010-05-23 Thread Lee Clemens
I just use an ANT script which reads some propeties and repackages classes, updates AndroidManifest.xml, updates some Java final variables, etc during the build depending on if it is full/pay or free/demo -Original message- From: jk-bk-vk jeffakna...@gmail.com To: Android Developers

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-23 Thread JP
Same problem here. BTW, in my case, I allow all screen sizes. I've got a couple of apps out that build on each other. The paid one doesn't show, the free stuff, that actually requests additional permissions, is still there. Kindof bad for the little business there is. At least 2.2 hasn't been

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-23 Thread JP
Same here. Thankfully I'm not alone with this. I allow all screens. This needs to be addressed on the fixed end, otherwise On May 23, 4:37 am, niko001 ebs...@googlemail.com wrote: Hi, some of my apps are not being shown in the market after updating to 2.2 (for no obvious reason, doesn't seem

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-23 Thread niko001
Hi, thanks for your answers. Yahel, that's a good point, the Google I/O-Android-Keynote talked about market filtering for certain features (so that an application requiring a touchscreen is not shown in the Market of a Google TV- Device, for example). What's weird, however: I have a paid and a

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread JP
Best of luck, you've got my sympathy, can't offer more. On May 23, 10:41 am, Moto medicalsou...@gmail.com wrote: I'm well aware and familiar to b.android.com.  The reason I don't post code is because of the amount of time it took me to get streaming working, specially AAC+ content.  I would

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
Yes - I realize that. It just doesn't work in my setup. :-( I can see the R.java file from the library gets included in the generated content, but i don't get access to the classes in the library project. Very frustrating. Regards, Michael A. On May 23, 7:24 pm, Lance Nanek lna...@gmail.com

Re: [android-developers] Re: Update view in listview

2010-05-23 Thread Romain Guy
So if there are 7-8 or more items visisble at the same time and each item can be updated every half second or so, I cannot each time walk through all visible items i nthe list to find the one that needs to be updated. This chokes all UI responsiveness and puts a lot of pressure on CPU taking

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
Just to note that I am fully up to date with both the SDK and Eclipse plugins, so that does not appear to be the problem. On May 23, 8:45 pm, Michael A. michael.aki...@gmail.com wrote: Yes - I realize that. It just doesn't work in my setup. :-( I can see the R.java file from the library gets

Re: [android-developers] Re: Android Library Project

2010-05-23 Thread Xavier Ducrohet
When you do the link between the main project and the library (as shown here: http://developer.android.com/images/developing/adt-props-libRef.png), try to simply restart Eclipse (I know it's annoying) and the link should happen. The library source folder will appear in your main project as a new

[android-developers] Re: library project returns wrong resource

2010-05-23 Thread davemac
Sounds like your bitmap is being scaled before it is returned to your code. Could you post some code so we can see what you're trying to do? Android might perform scaling to match screen density. - dave http://www.androidbook.com On May 23, 2:05 pm, Greg Donald gdon...@gmail.com wrote: I have a

[android-developers] Re: Android Market Place

2010-05-23 Thread davemac
I'm not quite sure what you're asking here, but I'm pretty sure the answer is no. Uploading an app to Android Market involves a specific set of information that it uses to make your app available to Android Market clients. Could you be more specific about what you're trying to do? - dave

[android-developers] Re: HTC EVO/Incredible multitouch only reporting max of 2 points?

2010-05-23 Thread davemac
Android supports more than 2, but can only work with more if the underlying platform (hardware plus drivers) gives it more than 2. Your test is probably perfectly valid and you're stuck with only 2. - dave http://www.androidbook.com On May 23, 1:27 am, Robert Green rbgrn@gmail.com wrote:

[android-developers] Re: Android Library Project

2010-05-23 Thread Mark Carter
I'm sure that the library.apk file error was because I had added the library project to my app project build path. The other problem, where app project classes could not see library project classes was due to something else. For some strange reason, even when the android library compiles by

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Maps.Huge.Info (Maps API Guru)
Sending an APK is as good as sending code to anyone willing to take 5 minutes and break it apart, or haven't you been following the interesting thread on piracy? http://groups.google.com/group/android-developers/browse_thread/thread/32c5f3342a962a97/ac2b74a87938a16c -John Coryat -- You

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
Hi, I figured out (after fiddling around with the TTT examples) that the problem was that the source folder is not being added to the build path as it was in the TTT example. Restarting eclipse after having added the library worked, though. Thanks. Regards, Michael A. On May 23, 9:06 pm,

[android-developers] setContentView() fails in library project

2010-05-23 Thread Greg Donald
I have an Activity I factored out to a library project. setContentView is now failing, it cannot find the layout file, even though it's right there. setContentView( R.layout.leaders ); I have res/layout/leaders.xml sitting there, no visible errors or warnings. It used to work fine before I

[android-developers] Re: onActivityResult does not always get triggered when using IMAGE_CAPTURE with startActivityForResult

2010-05-23 Thread davemac
Does the issue have anything to do with device orientation changes while taking a picture? That is, if you take a picture without rotating the device, does it work better than if you rotate to take a picture? - dave On May 20, 12:44 am, efe sey...@seymen.com wrote: Hi all, I am trying to

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
Typo: I mean to write as a Source Folder on the Java Build Path view. Unfortunately, it is very hit and miss how well this works. In some cases, restarting Eclipse works to show the code as a new source folder, in other cases not. And it's not very obvious (to me), why it works for one test

[android-developers] Re: New media framework Stagefright sucks... :P

2010-05-23 Thread Moto
Yeah I did see that thread... Just that my head is about to explode with all this Android developing... lol... I love it! :P On May 23, 3:29 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Sending an APK is as good as sending code to anyone willing to take 5 minutes and break it

[android-developers] Re: [Help] Anybody run Chrometophone in Android 2.2 Emulator successfully?

2010-05-23 Thread brian
I set chrometophone up in emulator You need to enable networking See abd forward... On May 23, 8:38 am, Vincent Tsao caojunvinc...@gmail.com wrote: i found Chrometophone here:http://code.google.com/p/chrometophone/. I'm trying to setup this project in Android 2.2 Emulator, but i can't

Re: [android-developers] Re: how to connect android phone to pc using adb

2010-05-23 Thread dan raaka
this might help http://bradchow.wordpress.com/2009/02/16/adb-on-windows-and-ubuntu-linux/ -Dan On Tue, Apr 27, 2010 at 8:06 AM, applesquash applesqu...@gmail.com wrote: Did you install the SDK USB driver? On Apr 26, 9:38 pm, karteek kartee...@gmail.com wrote: @Rogerio My OS is

[android-developers] Apps not showing in market after factory reset with Froyo.

2010-05-23 Thread Christopher
I recently got the Froyo update on my N1, and initially everything was working just fine with regard to being able to see my apps in the market. Today I performed a factory reset to wipe the device, and after getting it set up again, I can no longer see my apps in the market. Has anyone else run

Re: [android-developers] Re: Android Library Project

2010-05-23 Thread Xavier Ducrohet
I'm not sure why subversion would impact it, but that's not impossible. I've done a lot of link/unlink of library projects when we develop it and never had a problem. I just tried it at home and it failed to link it correctly (but restarting eclipse made it work). I guess I'm going to have to go

[android-developers] Automatic font size adjustment?

2010-05-23 Thread Isaac Wagner
I've got a TextView that I allow to expand to fill the remaining available size in my layout. I'd like for the font size to automatically increase to fill the entire TextArea, if possible. Does anyone know of a way to make this happen? -- You received this message because you are subscribed to

Re: [android-developers] Apps not showing in market after factory reset with Froyo.

2010-05-23 Thread SoftwareForMe.com
I have a friend who had this exact thing happen. I'll let you know if he figures it out, and you do the same! On Sun, May 23, 2010 at 2:10 PM, Christopher christopher...@gmail.comwrote: I recently got the Froyo update on my N1, and initially everything was working just fine with regard to

[android-developers] Re: Android Library Project

2010-05-23 Thread Mark Carter
On some occasions, the debugger gets a bit mixed up and can't decide whether the source code lives at MyApp/MyLibrary or MyLibrary. So, if I set a breakpoint in the source code of the MyLibrary project, it might be ignored completely, or the breakpoint is reached and, when it does, a

[android-developers] Re: Twitter app's popup aligned with ListView item - how did they do it?

2010-05-23 Thread Emmanuel
The twitter application will become rather soon open sourced, it has been announced by Android officials. I think Google wants this kind of widget to become standard in Android applications. Emmanuel / Alocaly http://androidblogger.blogspot.com/ http://www.alocaly.com/ On May 21, 9:53 pm,

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
Right. I may have managed to stumble upon the cause of the problems I experienced. I tend to name my projects using dot notation; e.g. domain.project. It seems as if this naming might have caused problems. Once I renamed the non-functioning library project to domain_project, the library

Re: [android-developers] Re: Android Library Project

2010-05-23 Thread Xavier Ducrohet
hmm interesting point about the period in the project name. I'll check it out tomorrow at work. What's the build path error you get when you refactor a class from the main project to the library? This really shouldn't happen! Xav On Sun, May 23, 2010 at 3:15 PM, Michael A.

Re: [android-developers] Re: Android Library Project

2010-05-23 Thread Mark Carter
FWIW, I don't use periods in project names. As for my comment about breakpoints - it seems the workaround is to access the (and set breakpoints on) library source code in MyApp/MyLibrary rather than MyLibrary (i.e. top level). If you set a breakpoint in a class of the top level project then the

[android-developers] Ringtones saved from audio files in SD card disappear after reboot

2010-05-23 Thread Nolan Lawson
I'm having a problem creating ringtones from files saved to the SD card. I have succeeded in getting the information to be written to the MediaStore database, and the files do show up in Settings - Sound Display - Phone ringtone. However, as soon as I reboot the phone, the files disappear from

[android-developers] Re: Apps not showing in market after factory reset with Froyo.

2010-05-23 Thread niko001
I'm having this issue even without performing a factory reset, see http://groups.google.com/group/android-developers/browse_thread/thread/96d33683093a3dd7 On 23 Mai, 23:30, SoftwareForMe.com sa...@softwareforme.com wrote: I have a friend who had this exact thing happen. I'll let you know if he

Re: [android-developers] Re: Android Library Project

2010-05-23 Thread Xavier Ducrohet
Ah that may be a problem with Eclipse and how it deals with linked source folder. I'll see if we can override the behavior, but it's unlikely. Xav On Sun, May 23, 2010 at 3:35 PM, Mark Carter mjc1...@googlemail.com wrote: FWIW, I don't use periods in project names. As for my comment about

Re: [android-developers] Android 2.2 SDK emulator and JIT?

2010-05-23 Thread David Turner
First, only the 2.2 system image contains the enabled JIT, so you will need to create a new AVD to be able to test it. Second, we make no claims on performance when enabling the JIT in the emulator (which itself JITs ARM instructions to x86), but you should still be able to see some improvements.

Re: [android-developers] Re: Apps not showing in market after factory reset with Froyo.

2010-05-23 Thread Christopher Grace
Thanks for the reply. The behavior I'm seeing is exactly the same as what you've noted. I still don't feel particularly good about the situation, but as there are others noticing the same issue, at least I don't feel lost in this. Will start examining my manifest files in greater depth to see if

Re: [android-developers] Re: Android Library Project

2010-05-23 Thread Mark Carter
@Xav - about the conflicting resource naming problem in multi-level library hierarchy... Would it not be simplest to just not allow sibling libraries to define the same resource? Just fail the compilation. All these libraries are in-house so we've got enough control over this. So imagine a

[android-developers] IMAGE_CAPTURE Intent and changing phone orientation

2010-05-23 Thread efe
Hi all, I think finally I am able to to replicate my issue of the camera intent restarting mysteriously (not always) after an image capture, where the intent never seems to finalize and call the code specified in onAcitvityResult function. As it turns out after starting the IMAGE_CAPTURE intent

[android-developers] Re: Android Library Project

2010-05-23 Thread Michael A.
On May 24, 12:24 am, Xavier Ducrohet x...@android.com wrote: What's the build path error you get when you refactor a class from the main project to the library? This really shouldn't happen! Non-obvious (of course). I just get a The project cannot be built until build path errors are resolved

[android-developers] sqlite3 in adb not in 2.2?

2010-05-23 Thread schwiz
So I just watched the talk at Google I/O where they showed how to use sqlite3 in ADB to help debug your database. I didn't know you could do that way cool. So I was doing it on my nexus which is rooted and it was working fine. Then I went ahead and installed 2.2 and now when I type sqlite3 in

[android-developers] Re: samsung app store

2010-05-23 Thread schwiz
samsung had a really sick looking phone at IO I wanted it really bad :P On May 19, 9:24 pm, Nathan critter...@crittermap.com wrote: SamsungApps.com is apparently registered to Samsung Electronics CO., Ltd. according to WHOIS information. So they want Android apps? I heard Samsung wanted to do

Re: [android-developers] sqlite3 in adb not in 2.2?

2010-05-23 Thread Mark Murphy
schwiz wrote: So I just watched the talk at Google I/O where they showed how to use sqlite3 in ADB to help debug your database. I didn't know you could do that way cool. So I was doing it on my nexus which is rooted and it was working fine. Then I went ahead and installed 2.2 and now when

Re: [android-developers] Re: samsung app store

2010-05-23 Thread dan raaka
Galaxy S (GT-I9000) http://www.gadgetvenue.com/samsung-galaxy-i9000-android-21-smartphone-announced-03241453/ -Dan On Sun, May 23, 2010 at 4:39 PM, schwiz sch...@gmail.com wrote: samsung had a really sick looking phone at IO I wanted it really bad :P On May 19, 9:24 pm, Nathan

[android-developers] how to invalidate a single row in ListView with EfficientAdapter?

2010-05-23 Thread greg
My application has a ListView that uses an EfficientAdapter (i.e., APIDemos/Views/Lists/List 14) to display a list of custom views (a TextView with some line drawing on the left of each row and a checkbox on the right of each row). In the ListView's onItemClick listener, the checkbox changes

[android-developers] Re: onActivityResult does not always get triggered when using IMAGE_CAPTURE with startActivityForResult

2010-05-23 Thread efe
Yes !! it does, i recently posted another question with this as this seeming to be the reason. Any idea on how i should be properly handling this behavior ? On May 23, 3:33 pm, davemac davemac...@gmail.com wrote: Does the issue have anything to do with device orientation changes while taking a

[android-developers] HTC Incredible: How can you store/retrieve images?

2010-05-23 Thread Streets Of Boston
It has been asked a few times, but no-one has been able to figure it out (judging from the existing posts on this forum :-)). Maybe some Google engineers can chip in? Since the Inredible comes with internal storage, where are images stored? - Should we be using

[android-developers] about map search

2010-05-23 Thread gujian
Hello,everyone.Now,I have a problem about map search.When I put the search keywords,such as Beijing 、Shanghai, I can get the location.But I put others such as stations(huochezhan、qichezhan), I can't get the location. I used the 'Geocoder' class and I don't know the cause .Please help me ,Thanks.

[android-developers] Export Signed Application Package... not working

2010-05-23 Thread yves...@gmail.com
I am using Windows XP and Eclipse to develop. I updated everything today, the new sdk, the new adt etc. After that, when I tried to export signed application package, nothing happened. If I click export unsigned application package, a dialog box showed up. Anything i missed? How can I fix this

[android-developers] Client server setup in android

2010-05-23 Thread santha
Hi Guys, I'm new to android application development.. I want to transfer the data between the client and the server.. As of my knowledge for transferring the data from client to server we use HttpClient protocol.. Is this protocol is same as REST web services?? If i want to send the data in

[android-developers] Re: Ringtones saved from audio files in SD card disappear after reboot

2010-05-23 Thread Nolan Lawson
All right, I seem to have accidentally figured this out. Hopefully my explanation can help others having similar problems. The problem seems to be not with the .nomedia file or with the parameters in the ContentValues (my first guesses), but rather with the names of the directories. Apparently,

[android-developers] The difference between removeViewInLayout() and removeAllViews()

2010-05-23 Thread xhy
hi all ,i inflate a xml ,and add it to a mapview .But i want to remove it when i click a button.I must click the button two times sothat i can remove it when i use the removeViewInLayout() method ,but if using removeAllViews() will do . Why?Thank you ! the code is: add the view to mapview:

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-23 Thread Lance Nanek
Are you using the copy protection option in the Market publishing console? On May 23, 11:33 am, niko001 ebs...@googlemail.com wrote: Hi, thanks for your answers. Yahel, that's a good point, the Google I/O-Android-Keynote talked about market filtering for certain features (so that an

[android-developers] Re: Memory Leak in Contact List

2010-05-23 Thread mike
hi people, any idea about this, need really help for this issue, haven't you guys came up with this issue?? regards, Randika -- 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: Memory Leak in Contact List

2010-05-23 Thread mike
hi people, any idea about this, need really help for this issue, haven't you guys came up with this issue?? regards, Randika -- 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: Certain apps not being shown in Android Market?

2010-05-23 Thread Zsolt Vasvari
No problems on my end. I am using the following settings: supports-screens android:smallScreens=true android:normalScreens=true android:largeScreens=true

[android-developers] Re: samsung app store

2010-05-23 Thread gosh
They did announce the 'Web Store' at IO which is most probably the shared future with Android Market. i.e. Buy your web apps or your android apps from the same store, the store that runs in HTML5 on your desktop, and therefore most probably will also run on your Android (and 'soon' your Google TV

[android-developers] Context.getExternalFilesDir() folder is removed on app upgrade? Where to store data?

2010-05-23 Thread jean-guy
Greetings all, Since API 8 (Froyo) we have a standard place to store application files on external storage (read this article for more info: http://developer.android.com/intl/fr/guide/topics/data/data-storage.html) My existing application downloads a fair chunk of data to SD card on the user's

[android-developers] Re: Android 2.2 SDK emulator and JIT?

2010-05-23 Thread Ecthelion
Thanks for the explanation. Of course I created a new AVD based on 2.2. And I my computations include on FP but only integer operations. Therefore I was surprised to see (almost?) no changes. On 24 Mai, 00:42, David Turner di...@android.com wrote: First, only the 2.2 system image contains the

  1   2   >