[android-developers] Re: Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY

2010-06-15 Thread Rahul Garg
I have already done that. On Jun 14, 2:25 pm, SREEHARI sreehari.madhusooda...@wipro.com wrote: HiRahul, If u added uses-library android:name=com.google.android.maps / already, the problem will be due to map key. Try creating map key in he right way. Regards, SREEHARI. -- You received

[android-developers] AudioHardware pcm playback is going to standby

2010-06-15 Thread k_day
Occasionally when I have a lot going on in my app, and I am playing a number of sounds using SoundPool, my app just completely freezes. Looking at the logs, I see this: I/AudioHardwareMSM72XX( 56): AudioHardware pcm playback is going to standby. My app must then be force closed and restarted.

[android-developers] Re: about making charts in android

2010-06-15 Thread k_day
You could use the Google charts api, which is free (but requires access to the web). On Jun 14, 4:06 pm, Jose Luis Montes jlmont...@gmail.com wrote: Hello, I want to make some statistical charts in my android app and I dont know how to do them or what technology or library I can use. I have

[android-developers] Extract text from image

2010-06-15 Thread SREEHARI
Hi, I need to extract text from the image captured in camera. How to do this? Pls help. Thanks in advance... SREEHARI. -- 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] Saving an encoded video stream with headers

2010-06-15 Thread Andy Savage
Hi All, Just wondering if there's a way to save a pre-encoded video stream to a file with headers. For example I have a video stream encoded in h264. I simply want to save this to a file and have mediaplayer playback this file. I have the RTP framework to do this and can save it to a file, but

[android-developers] Re: One of my application is invisible now on the market (Pure messenger / not copy protected)

2010-06-15 Thread Koxx
Can I have support please ? -- 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] Re: AlarmManager on droids

2010-06-15 Thread tnull
I am having similar issues with Droid. G1 and Emulator seem to work fine. Is this related? http://community.developer.motorola.com/t5/Android-App-Development-for/AlarmManager-ELAPSED-REALTIME-WAKEUP-amp-RTC-WAKEUP-won-t-wake/td-p/4987 On Apr 29, 12:17 pm, nikhil nik...@gmail.com wrote: Just to

Re: [android-developers] Which way is better for an app to support multiple screens?

2010-06-15 Thread Bhavya Siddappa
Hope this helps you http://d.android.com/guide/practices/screens_support.html ./bhavya -- 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,

[android-developers] Astdroid - An Android phone in space - Kickstarter project

2010-06-15 Thread Danny Pier
Hey Android developers, Thought some of you may be interested on a project I just launched on Kickstarter called Astdroid. I'm hoping to write an Android App that will aid in getting a HTC Evo attached to a weather balloon into space, taking pictures and video along the way, then returning to

[android-developers] Layout File (tabs/maps)

2010-06-15 Thread Michael
Hello, I'm new to Android (and XML, but not Java), and was wondering how I would create a layout file for a tabbed application, with one of the tabs having a map in them, and the other tabs having check boxes or something else. I noticed in order to incorporate a map in an application, it must be

[android-developers] How to avoid PlayerDriver invalid percentage value error?

2010-06-15 Thread Androide
I want to play a live streaming in mp3, but when i call prepareAsync, invalid percentage value xxx shows. This is a example of live streaming: http://83.231.187.202:80/rtve/radio1.mp3 And this is my simplified code: mp = new MediaPlayer(); try {

[android-developers] Re: Why is Android so buggy?

2010-06-15 Thread JAlexoid (Aleksandr Panzin)
Be a good fella', with 16 years in S/W development you can help everyone and contribute to the development tools. Android on the other hand is quite bug free, the developer tools have some minor/medium bugs. And I bet your software is as buggy as Android itself, if not more. On 7 июн, 20:50,

[android-developers] Re: Sending especial caracters (pause = ,) when calling with ACTION_CALL

2010-06-15 Thread piwaf
I'm up against the same issue, glad to see I'm not crazy. Did you ever find a workaround or get any resolution? On Apr 25, 6:26 am, Lee lee.wil...@googlemail.com wrote: Encoding # works fine. An encoded comma or semi-colon doesn't display and stops further parsing of the number at that point,

[android-developers] View.post looper exiting problem

2010-06-15 Thread Lakshmie
I am calling the setSelection for my ListView using View#post. It seems like many a time the looper exits and, therefore, the setSelection is not always called. This creates an ambiguous UI experience. To circumvent the problem, for the time being, I did a while ( ! View.post() ). Though this

[android-developers] Running Android compatible exectuable on Android emulator

2010-06-15 Thread aravind
Hi , I actually compiled VP8 codec on Android. So How do i check it on Android emulator. what are the steps required to be done. Could any one please let me know how to do it. Your's Aravind.M -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] AndFTP Intent - Activitynotfound exception

2010-06-15 Thread r
I am trying to consume AndFTP intent to upload file through ftp. I've installed AndFTP in my Android Virtual device and used below code and ended up with activitynotfoundexception. Am i missing anything. Do i need to include anything in the xml file. Please let me know. Any help would be greatly

[android-developers] skia font rendering engine

2010-06-15 Thread fengxinzi
Hi, I want to add my own font rendering engine and my font data(not truetype) in the android source,Is it possible? How can I do? Thanks. -- 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] SQLite db limitations for Android app

2010-06-15 Thread iThinkSimple
Our Android application will read data from our own SQLite db which is around 3GB in size. What is the maximum storage limit for db that is specific to a single app? (The specs say that the device's internal memory supports 256MB, so does it include storing the app's db? If yes, then, is there an

[android-developers] Simple Cursor Adapter - List View

2010-06-15 Thread sateesh devabhaktuni
I have table with 3 columns which is binded to an XML document with three text views. String[] from = new String[]{A,B,C}; int [] to = new int[] {R.id.a,R.id.b,R.id.c}; Where R.id.a, R.id.b, R.id.c - TextView Depending on the value store in the third column, I have to decide whether i should

[android-developers] Re: How global is the app market?

2010-06-15 Thread Michael
Yes, they can see them (and I believe download free ones), but apparently not purchase any paid apps. http://en.wikipedia.org/wiki/Android_Market #availability for users On Jun 9, 1:27 pm, Neilz neilhorn...@gmail.com wrote: Hi. I'm UK based and I'm wondering how much of the world can see and

[android-developers] Re: MusicVis live wallpaper

2010-06-15 Thread Prophet Zarquon
-*Why?*- I understand that optional graphics should probably not be the highest priority. On the other hand, I have just ripped through page after page trying to figure out why I can't find any music visualizers for my new Sprint HTC Evo 4G and so far, the answer seems to be It could be done,

[android-developers] I am still not getting browser connections

2010-06-15 Thread Nikos
I'm trying to get to grips with the emulator and I am using Vista and added a rule to windows firewall for the android emulator. I am still not getting browser connections :( any tips? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Dynamically obtaining several instance of a view item defined in layout/xml file

2010-06-15 Thread JAlexoid (Aleksandr Panzin)
See LayoutInflater @ http://developer.android.com/intl/de/reference/android/view/LayoutInflater.html And there is a getLayoutInflater() in Activity class. (http:// developer.android.com/intl/de/reference/android/app/ Activity.html#getLayoutInflater%28%29) There is also an example:

[android-developers] Re: Placing a bitmap image in ImageView

2010-06-15 Thread mjmeyer
Have a look at Bitmap.CreateScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter). You should be able to use that to scale it into your ImageView dimensions before setting it. However, ImageView.ScaleType.CENTER should give you what you want even without the extra bm creation.

[android-developers] Synchronization

2010-06-15 Thread gsmaker
Hi everyone, I am new in android programming. I do not know many things about android. Actually, I am facing a problem. I want to synchronize my android device with Windows computer such that I can access all the data like contact address, e-mail box, installed application and so forth of my

[android-developers] How to measure width of indicator in ExpandableListView?

2010-06-15 Thread milo1000
I'd like to return my custom (or even TextView) from my implementation of ExpandableListAdapter.getGroupView(). The problem is, that I don't know the value for padding of my custom TextView - the collapsed/expanded indicator is drawn over my text. I dig into implementation of

[android-developers] Age of Heroes Online под And roid

2010-06-15 Thread iren
Age of Heroes - это единый и тщательно разработанный мир, это бесчисленное множество больших и малых историй, это место подвигов, исследований и приключений для тысяч игроков. У Века Героев нет пределов во времени, или в пространстве - присоединяйтесь к нам, и вы убедитесь в этом сами! Теперь

[android-developers] why is my depth test not working on android

2010-06-15 Thread Yanbo Li
I am trying a simple case which is testing the depth test on android 2.1 using opengl es2.0 I used: //in init funtion glDepthMask(true); glDepthRangef (0.0f, 1.0f); glClearDepthf( 0.0f ); glEnable(GL_DEPTH_TEST); glDepthFunc(GL_LESS); //---in render

[android-developers] Will there be 2nd round of Device Seeding Program?

2010-06-15 Thread ayutin
I hope they can re-launch the program. I just missed the previous one! -- 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] Animation not start immediately when the target view is out of window

2010-06-15 Thread funnything
Hi. When I apply some animation to the view, which is out of window, the animation not start immediately. And then, I scroll the screen to show the animation target view, the animation will start. I hope to the animation will start immediately when it apply. Any ideas? Bellow is sample code. Thank

[android-developers] Better monetize your apps with Prosperent

2010-06-15 Thread Prosperent
First, hello to everyone here. My name is Brian, and i'm the CEO of Prosperent.com. Prosperent is an advertising platform for mobile and social application developers that presents a new way to monetize your apps. We provide you with an open API in which you send us a simple query and receive a

[android-developers] how to move imagebuttons according to mouse movement?

2010-06-15 Thread Divya
I have some imagebuttons (bookmarks) and when I long-click on any one of them, all of them should be capable of moving and I should be able to rearrange them or drag them to the trash bin, its similar to how it works in the android launcher. When I long-click on any of the imagebuttons,

[android-developers] Re: ADB Device offline - HTC Desire, Win 7 64bit

2010-06-15 Thread MARS_3-142
Hi, I have the same problem under Vista64. I start HTC Sync and it finds my Desire. Now I start Eclipse and the Desire goes offline. If I terminate the ADB-process (via ProcessExplorer) HTC Sync works again. Has nobody any idea? -- You received this message because you are subscribed to the

[android-developers] Webview Java vs Javascript Performance

2010-06-15 Thread android-developers
Hello, i am experienced programmer in both java and javascript (web developing). Now with android, there is the possibility in using both to render the page before displayed in the webview. Now my question is, which one is the more performance one. E.g. rendering a real large table of 5 col x

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-06-15 Thread ayutin
I hope they can re-launch the program. I just missed the previous one! On 5月31日, 下午1時50分, Henrik Sandström sandstrom.hen...@gmail.com wrote: The requirement was 5000 downloads by February 28th. On Mon, May 31, 2010 at 7:47 AM, NightGospel wutie...@gmail.com wrote: Hi all, Does

[android-developers] Custom View in a XML Layout

2010-06-15 Thread jaideep
I am trying to create a Custom View and display it using a layout definition in XML. However whenever the Activity that contains this Custom View is executed, the application stops and I get Forced close error. Here is the CustomView class public class CustomView extends View { private

[android-developers] LOG: 'obtainBuffer timed out (is the CPU pegged?)'

2010-06-15 Thread Shrinivas K
Hi All, I'm getting the subjected log if I play audio files for long time, I could see it is happening specially at the end of a file play. And the system needs a reboot to awake the audioflinger. In AudioTrack::obtainBuffer function, I could see a comment : // timing out

[android-developers] WebView TextBox

2010-06-15 Thread Rajkumar
I am accessing following simple index.html page in WebView- HTML BODY form name=test2 input type=text / /form /BODY /HTML The problem is that when I click in the text box, the size of the text box increases and its gets shifted towards lower side. Thanks in advance. -- You received this

[android-developers] Running a thttpd server on android

2010-06-15 Thread sambitk das
Hi , There is a requirement to run a thttpd server on android, so as to run a web-service on the android device . I need suggestions how to start of with . Any help is appreciated. Regards Sambit. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Sqlite database problem

2010-06-15 Thread Amol Pathak
I am developing a simple android application in that I am getting serious error that system stops unexpectedly. help me out there,and also I want to know that how should I enter path in DBHelper.java file .Here I am giving my code. -- You received this message because you are subscribed to the

[android-developers] Eclipse ADB Error

2010-06-15 Thread Jordan
I just recently set up the SDK and Eclipse by following the instructions step-by-step and now every time I access anything Android related in Eclipse, it pops up saying Failed to parse the output of 'abd version'. I try to continue on running the project and this pops up in the console:

Re: [android-developers] Re: OutOfMemoryError

2010-06-15 Thread chetan achar
Hey, try to invoke garbage collector in you program once u add the pic. On Mon, Jun 14, 2010 at 4:21 AM, svebee sven.kapud...@gmail.com wrote: Problem was 480x800 backgrond (~20KB) which after ~4 activity re- creates occupied ~16MB. After deleting, everything works just fine. On Jun 11,

[android-developers] Re: Change Android graphic display to directfb

2010-06-15 Thread 政毅 林
I've fixed up the Pthread of bionic C library to add some pthread functions which directfb used. The add-on pthread functions include pthread_cancle(), pthread_testcancal(), pthread_rwlock_init(). pthread_atfork() And I've add the DirectFB-1.4.3 library with DFB-extra package source in the

[android-developers] Windows Manager (New Look INTERFACE) for Android

2010-06-15 Thread argongold
Hi, I'd like to know for possible options to change the Windows Manager with NEW LOOK and INTERFACE using OpenGL ES 2.0 for Android SDK V2.2 ? With current design of android SDK , is this possible by any way? What should be the starting point to INVESTIGATE /ESTIMATE the work required to be

[android-developers] Help with a click effect for my own custom button.

2010-06-15 Thread Bure
Hi all. Have a problem when i try to invoke a click effect for my custom button. Basically I want my button to change background color for like 100 ms and then change back to the original color. I'm using a OnClickListener for this, with an additional thread for the sleep effect. The problem is

Re: [android-developers] power manager (Light off) in android

2010-06-15 Thread Richard Cox
I'm having the same issue. I made sure the permission was set as a child of the manifest element in the manifest file. It always fails in the emulator with the same security exception you have. I'm wondering if you have to officially install the package to get it recognized by the emulator?

[android-developers] Re: Slow Eclipse on OS X

2010-06-15 Thread Christopher Fei
I've had the same problem I too have narrowed it down to the XML tools. My Eclipse experiences no more slow down if I open XML files with Eclipse's built in XML editor. You do lose the advantages of the ADT XML editors, but still, I recommend using them on a case by case basis and defaulting to

[android-developers] Dreaming of Electric Sheep

2010-06-15 Thread Peter Groman
Hello All, Very newbie Android SDK... I am interested in begging android development. I have pair of related applications in mind that I want to develop rather quickly. I tend to learn better when I'm learning while actively working toward my goal app, and I've got Eclipse and the SDK installed

[android-developers] Still trying to get my head around permissions - can anybody help?

2010-06-15 Thread Richard Cox
I'm not sure if I completely grasp the Android permissions model. I recently started working on a simple widget to put the phone to sleep. Of course, it always gets a security exception because an ordinary user app isn't allowed to call the PowerManager method 'goToSleep' because it's

Re: [android-developers] Re: OutOfMemoryError

2010-06-15 Thread chetan achar
y i agree with Eric...Completely.. GC is not able to clean it up... On Fri, Jun 11, 2010 at 6:48 AM, Eric F ericfrie...@gmail.com wrote: Look at the dimensions of your images, not the file sizes. Because the file sizes are the result of PNG compression. But let's assume that's not the

[android-developers] Re: Market problems again

2010-06-15 Thread Andy
Seems to be fixed now, at least for me. -- 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] OpenGL ES Canvas

2010-06-15 Thread char...@demeulenaer.com
Hello, I'm working on an OpenGL ES game using the NDK. My min SDK version is 1.6. I have created an OpenGL Es 1.0 renderer in Java and am calling a native JNI method in that renderloop. The problem I'm having is that it seems that the resolution of the rendering context is limited. When using

[android-developers] Remove some content out of WebView

2010-06-15 Thread ajent
Is there a way to have webview pull up a page, and remove all of the images and links in that page, leaving only text that was generated? Thanks. -- 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] keyboard textfield selected color

2010-06-15 Thread authorwjf
Howdy, I am sure there is an easy answer for this but I've yet to find it. Our application requires us to change out a number of the system 9.png images (okay, actually our marketing dept is requiring as I'm fine with the orange). Anyhow, I've been successful in getting most buttons to change by

[android-developers] Find the Device Details using an API

2010-06-15 Thread Abhi
Is there an API that i can use to find the device details like model number and Brand name etc? Thanks, Abhi -- 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

[android-developers] Re: Help CSSParser.cpp build error in the 2.1 Source Code

2010-06-15 Thread mc_seem
Same thing here on gcc version 4.4.3 20100127 (Red Hat 4.4.3-4) (GCC) .. -- 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] Reflection API:List all classes in a package that extend a specific super class

2010-06-15 Thread Max
Hello everyone, I would like to use reflection to display all the classes in a package that extend a specific base class. I am using the examples as given from here to work with Java Reflection API: http://forums.sun.com/thread.jspa?threadID=341935start=15tstart=0 The sample class with a main

[android-developers] ADB over TCP/IP?

2010-06-15 Thread Austin
Hi folks, My Android (eclispe) development machine is separate from the machine which my phone is physically connected to (the dev machine is actually in a Hyper-V virtual machine). The ADB helps makes it look like the ADB server can connect over TCP/ IP to a remote daemon, but I can't quite

[android-developers] Problem running the simplest GoogleMap App

2010-06-15 Thread cwgrc2
Android Devers. I am new to making Android apps but am a seasoned Java developer. I am trying to run just a simple app imbedding the Google Map in the main Activity. I am using ECLIPSE Galileo 3.5.1. Have installed all the latest libraries. Google APi's 2.2. I have made a Google AVD with

[android-developers] Re: Help CSSParser.cpp build error in the 2.1 Source Code

2010-06-15 Thread mc_seem
OK, I guess I figured this out. For some reason makevalues.pl does not get called from a Makefile. You should either invoke 'makevalues.pl' manually or call ./external/webkit/WebCore/make-generated-sources.sh to generate the necessary source code files from *.gperf files. After you do that, you

[android-developers] Re: Market problems again

2010-06-15 Thread Robert
One of my apps lost 1800+. I wasn't very nice this morning. Lol On Jun 12, 2:08 am, Zsolt Vasvari zvasv...@gmail.com wrote: My app suddenly lost half its installs  :(    Both on the Market website and on the device Market app. Does anybody else ee this? -- You received this message because

Re: [android-developers] Re: APIs to access email accounts or SMS/MMS messages

2010-06-15 Thread Darrell Sullivan
- Original Message - From: curtis curtis.carm...@gmail.com To: Android Developers android-developers@googlegroups.com Sent: Thursday, June 10, 2010 2:23 PM Subject: [android-developers] Re: APIs to access email accounts or SMS/MMS messages I can understand why this functionality

[android-developers] HttpClient persisting for whole application

2010-06-15 Thread dxw_es
In my application I would like to make HTTP Post/Get calls after an initial log-in over several different Activities (so I would like to retain session information while switching different Activities). Either I can implement a remote Service to hold the HttpClient... or extend Application, put

[android-developers] Re: How to delete a inbox message from a specific sender

2010-06-15 Thread Ganesh Pisal
SMS/MMS Inbox parsing: Uri uriSms = Uri.parse(content://sms/inbox); Cursor c = getContentResolver().query(uriSms, null,null,null,null); This will help you to parse messages from inbox. No idea about message deletion. Regards, Ganesh Pisal Creating Android knowledge base -

Re: [android-developers] Visit Installed App Details Page on Android 2.2

2010-06-15 Thread nvstp
Hi, I also met this problem. Have you found how to fix that? Thanks. On Sat, Jun 12, 2010 at 04:56, Bo wang.b.fr...@gmail.com wrote: Hi All, I was using this method to show users the installed app details page Intent i = new Intent(Intent.ACTION_VIEW); i.setClassName(com.android.settings,

[android-developers] GPS:: The Application GPS_4 has stopped unexpectedly

2010-06-15 Thread EricM3
Hello everyone, I am trying to get a basic application to work on my emulator, but I keep receiving the error in the title. The program is simply supposed to find GPS coordinates and display them in a toast. I got the source code from here: http://www.devx.com/wireless/Article/39239/0/page/1

[android-developers] Game Stuttering

2010-06-15 Thread czimm...@exit4gaming.com
I have an issue with the OpenGL game I am developing that I am getting significant stuttering. I have put in a lot of debug code to try to see if it is something I am doing, but I haven't had any success at narrowing down what is going on. Stutters are between 80 msec and sometimes annoyingly as

[android-developers] Thread in Service paused after screen is turned off?

2010-06-15 Thread Chi Zhang
Hi In my application I created a service in which I download stuff from the internet. The code of the service looks like this: class SomeService ... { @Override public void onCreate() { super.onCreate(); Thread t = new Thread(fetch); t.start(); } private

[android-developers] Re: How to display Camera

2010-06-15 Thread gulizSeray
Hello, I downloaded the project and did what you explained above to import the project. When I run the application, all I see is a white screen. None of the keys or buttons seem to be working. Can you please tell me how to use the application? On Apr 25, 8:39 pm, Mark Murphy

[android-developers] Re: Functional testing multiple activities (ActivityInstrumentationTestCase2)

2010-06-15 Thread Aaron VonderHaar
I have been looking for a solution to this as well, and it seems that Android provides no working approach for doing this. You might want to take a look at http://code.google.com/p/robotium/ and see if that works for the specific cases you are testing. I'd be interested to hear if it works for

[android-developers] where to begin developing (apps;cdma hero;)

2010-06-15 Thread harry potter
ok i had this idea to bring a bit of webos goodness on over to the pearly gates of hero. darchstar has completely written a 100% working kernal for android 2.1, and we're now running overclocked with a delicious taste of pure vanilla aosp. while overclocked, and rockin the adw launcher, it is the

[android-developers] Voice search development

2010-06-15 Thread masi0
Dear Google - are you planning to develop and release support for Polish langaue for voice search/text to speech features in Android? Thx for the answer -- 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] Start an App via the Web

2010-06-15 Thread EricM3
Hello everyone, I would like to create a website that has a button, and whenever the button is pushed, an application or service on my phone will begin. Could someone please push me in the right direction for where I should look to accomplish this? Thanks. -- You received this message because

[android-developers] USB Debuging problem

2010-06-15 Thread Dennis123
Ok so I had USB debugging up and running. I applied the 2.1 firmware update to my HTC hero and it broke. I installed and reinstalled the driver, couldn't get it to work. I gave up. So I figured I would do Linux. Linux doesn't need a driver, just that little file. I had it working on one of

[android-developers] Android Calender API

2010-06-15 Thread Ganesh Pisal
I searched lot on Android Calender API's. I want to proggramatically add, remove calender events. Where I can find detailed calender API? Regards, Ganesh Creating Android knowledge base - http://ganeshpisal.blogspot.com/ -- You received this message because you are subscribed to the Google

[android-developers] filtering onMap object depending on their OnScreenCorrdinates

2010-06-15 Thread Hasn
Hi everyone, I have an application that have a Google map on Google Android 1.5 since we have been working on the application for a long time, we are not in stage of upgrading to the newest framework, so we are using 1.5 Now, I have map locations that are dynamically generated and drawn on the

[android-developers] any helpful documentation ?

2010-06-15 Thread Emmen Farooq
hi all - Im posting this here because Im not being allowed on android-beginners .I have sent the request for two weeks. I am an amtuer in android , is there any site or helpful place other than the developer-android for android beginners? -- You received this message because you are subscribed

[android-developers] Re: Ground or Tile overlays possible for Google Map ?

2010-06-15 Thread tiif
i'm also interested in this anyone? seems not possible ,_, On May 31, 12:27 am, qbit odb...@gmail.com wrote: Can we do this yet ? I'm looking to do something like:http://code.google.com/apis/maps/documentation/javascript/v2/examples... As far as I have read, there is no solution to this

[android-developers] Accessing Phone Conversation Audio Stream

2010-06-15 Thread Ian
Hi, I want to be able to access an ongoing phone call's audio and pipe it through speech to text for an app that I am developing. Is it possible to get access to the phone call's audio stream? Thanks -- You received this message because you are subscribed to the Google Groups Android

[android-developers] How to install ZIP files to Xperia X10

2010-06-15 Thread Gansmart
Hi Experts, I am new to Android. I have Xperia X10 phone. I have applications in ZIP files. When I open these zip files in Windows , I find common files like Androidmainfest.xml, classes.dex,resources.arsc. I dont know what to do with these files and how to install these files into my iphone ?

[android-developers] Re: Example gallery style view with fling, bounce, animation, etc

2010-06-15 Thread Neilz
Yes, I tried the FILL_PARENT, and it works fine with that instead. However on my older device with 1.5, it fails: Caused by: java.lang.RuntimeException: Unknown interpolator name: set at android.view.animation.AnimationUtils.createInterpolatorFromXml(AnimationUtils.java: 321) at

[android-developers] Upgrade to Android 2.2

2010-06-15 Thread Joshua Partogi
Dear all, Is it possible to upgrade the phone OS from Android 2.1 to Android 2.2? How difficult would it be for users to upgrade? I am wondering whether to use Android 2.2 SDK or not since there are many users that are using Android 2.1 already. Thank you for the assistance. Kind Regards,

[android-developers] android and restful api

2010-06-15 Thread rj
Hi there !, I am a very new to android application development and need to solve this problem. In my activity window, I would like to provide a button which makes a restful api call. That call returns an xml response. My server will wait until it gets back that response. Once it get backs

[android-developers] Video code plays on one android device not on another.

2010-06-15 Thread nyarome
Hi I am using the MediaPlayer API (1.5 version) in android. I have successfully gotten the Motorola Droid on Verizon to work well with the video both in terms of positioning and getting the picture to appear at all. However, the same code, using the same application with the same video source,

[android-developers] Android emulator problems

2010-06-15 Thread Jeff Colapietro
So, I've been doing the android tutorials and every time I try to load the emulator it gets to the waiting for HOME step and then cancels. It will load the emulator, but it will only get to the screen with ANDROID across. I rebooted my computer redid the tutorials and cleaned the projects and

[android-developers] Is it possible to use the camera's auto focus function to calculate the distance to an object in focus?

2010-06-15 Thread Johan Mattsson
Hi. I'm trying to write a program that will give me the GPS coordinates for an object that is currently in focus of my android camera. I can get the GPS coordinates of my phone and in which direction the camera lens is pointing. Now I just need to figure out the distance between the phone itself

[android-developers] Getting location data via wifi.

2010-06-15 Thread James
So I have just recently started programming for the Android. I am currently trying to get location data from a gpa and a network. I've noticed it's easy to use the DDMS emulator to send fake GPS data but I cannot figure out how to do so with the wifi of the device. -- You received this message

[android-developers] Re: How to debug SIGSEV?

2010-06-15 Thread KeithWrightbos
Hi Mariano, Thanks for getting back to me! I tried disabling zoom controls in my listview's webviews via: webView.getSettings().setBuiltInZoomControls(false); However I am still getting the issue. Is there another way to disable? Any help is much appreciated. Keith - Hide quoted text -

[android-developers] Re: Javascript problem with Webview runing under a HTC Desire

2010-06-15 Thread n...@oj
Hello, Got the same problem with my HTC Desire firmware version is 2.1- update1. Kernel version: 2.6.29-97da29ed. Build number: 1.15.405.4 Webkit 3.1. I'm developping an application in GWT which works under emulator (1.6, 2.1), Samsung Galaxy, Galaxy Spica, Acer Liquid. Sometimes asynccallback

[android-developers] Developing Google Maps in Android

2010-06-15 Thread JoksanCPEN
How can I put text on a google map on an android app when I touch an overlay? Does anyone knows if android support ah-hoc mode? I found that it doesn't but maybe you have another opinion. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] How to get and post JSON with Android?

2010-06-15 Thread Joshua Partogi
Hi all, Is there any code snippet for getting and postiing JSON object to a http server in Android? I want to call the API in my website and get the JSON response to be displayed in the Android apps. I am still new to Android so please bear with me. Thanks for the assistance. Kind regards,

[android-developers] Slovak currency - Euro

2010-06-15 Thread jaroslavz
Hi everybody, I have the beautifull htc phone (DESIRE). I set the system language to Czech (Slovakia) and i have one problem with this combination. Slovak currency is euro from the date of 1.1.2009 not is SKK slovak koruna. How to set the correct currency? -- You received this message because

[android-developers] how to parse this string using json

2010-06-15 Thread rahul jain
String s = [{id: 1, fields: {Name: hello1, Age: 10 }}, {id: 2, model: fields: {Name: hello2, Age: 12}}] I get error when I do this jObject = new JSONObject(s); --RJ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: App download/install count - market glitch?

2010-06-15 Thread Jeremy
I too noticed the same thing with my apps in the Market. On Jun 12, 11:47 am, Ken ken0624...@gmail.com wrote: I have couple of apps (billboard100 and xmplayer) that had been reaching download/installs of 10k/9k+ and 9k/6k respectively. This morning the counts dropped to 1k/1k and 5k/3k. How is

[android-developers] Android compression coding paper

2010-06-15 Thread Mai Giménez
Hi, I'm doing a resear about compression coding, and I'm interested about how android data compression is done in Android. I can't find any paper about it. Could someone help me? Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] stop/prepare MediaPlayer issues

2010-06-15 Thread Jeff B.
Hello, I have an ImageButton that plays a sound whenever it is held down and stops as soon as you let up. To do this I register an onTouch handler and operate on ACTION_DOWN and ACTION_UP MotionEvents. The code is below. The idea is that when the ACTION_UP comes in I first call stop() and then

[android-developers] Amazon link

2010-06-15 Thread Unixbox
Question. We would like to link some music in our app to the Amazon MP3 store. But when clicking on the link http://www.amazon.com/gp/dmusic/order/handle-buy-box.html/ref=sr_bb_tr_7?ie=UTF8isTrack=1asin.0=B002NHVFNYqid=1269449332initial=1tryInPlace=0sr=1-8session-id=183-1058621-7357063 It opens

[android-developers] Fwd: How to mount/umount sdcard

2010-06-15 Thread jhon d
-- Forwarded message -- From: jhon d jhon9...@gmail.com Date: Thu, Jun 10, 2010 at 6:52 PM Subject: How to mount/umount sdcard To: android-developers@googlegroups.com Hi i want to mount/unmount my sdcard from my application using jni I used the following c code to mount sd card

[android-developers] How to check the network status for both wifi and 3g mobiles

2010-06-15 Thread Imran ahmed
Android developers can check this code to check the network status on wifi and 3g mobile You need the following permission to get status view source print? 1 uses-permission android:name=android.permission.INTERNET/uses- permission 2 uses-permission

[android-developers] Re: Problem in Exporting Signed Application Package

2010-06-15 Thread JaakL
I've got same issue, and same remedy also . It has something to do with latest Android SDK, having broken projects has not been issue for me before. I have Windows 7, Eclipse Galileo (3.5 I guess), ADT 0.9.7 On 26 mai, 02:09, Marc Lester Tan mail...@gmail.com wrote: Thanks Xav, you are

  1   2   3   4   >