[android-developers] Re: ADC2 deadline

2009-08-24 Thread CraigsRace
http://www.meetup.com/svandroid/messages/7262249/ On Aug 24, 3:50 pm, rizwan rizcs...@gmail.com wrote: Hi , can anyone from Google let us know the exact date of submission of ADC2 Applications. or Google is extending date . I m very much curious about it . please let us know. Thanks

[android-developers] Re: adc2 submission site

2009-08-24 Thread Khurram Samad
I was so upset with the delay that i finally gave up and released the application at Android Store :) Check out Gang War Lite On Aug 19, 5:44 pm, mscwd01 mscw...@gmail.com wrote: I'd like it postponed a month please ;) It would be good to know either way though... On Aug 17, 7:43 pm,

[android-developers] content provider implementation

2009-08-24 Thread vishal bhoj
Hello Everyone, Can anyone explain the usage of selection and slectionargs in content provider implementation? It states that it filters the rows. Is it possible to filter based on substrings in the rows? example db entry has _DATA fun/abc/1 fun/abc/2 fun/abc/3 fun/xyz/1 fun/xyz/2 fun/xyz/3

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-24 Thread ANKIT SOMANI
Problem is with the Child activity, with the Theme.dialog 2009/8/24 ANKIT SOMANI ankitsomani...@gmail.com Hi all, I am facing a strange problem. I have 2 activities. The Second activity having the theme.Dialog (set in manifest). when I launched the second activity from first activity via

[android-developers] Re: How to capture and save the image of Google Map(MapView)...

2009-08-24 Thread idoun
I solved this problem. The main issue of this problem is that the MapView class extends View class has 0 value of width and height. (I think every View classes have this issue...) To set the right size what I want, I extended the MapView to MyMapView and overrided protected onSizeChanged method

[android-developers] Re: IllegalArgumentException occur: parameter must be a descendant of this view in ViewGroup.java:2454

2009-08-24 Thread Romain Guy
This issue is fixed in Donut but the source code available in the open is not the latest version. 2009/8/24 Justin chih.ting@gmail.com: This issue still happened in Donut. I want to describe my structure first. There are two main view in my Activity, one is Gallery another is a

[android-developers] Re: adc2 submission site

2009-08-24 Thread an0
If the time window is too small, any little problems may cause you miss it. Also consider the sudden surge of submissions in the same time. On Aug 20, 4:44 am, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: As long as the site opens before the end of the month, what difference does it

[android-developers] why padding can't use

2009-08-24 Thread tstanly
hi all, because my layout have a listview and tab widget, so I must set padding for seperating they, but when I use the android:padding=10px in the layout of xml file, there is nothing happen in the emulator screen, so how can I do for the padding?? thanks!!

[android-developers] Re: what permission to us ContentResolver cr = getContentResolver(); ???

2009-08-24 Thread Dany BREARD
Thanks you very much Dianne I called that on an other class Client out of my oncreate so now I don't have any error Dany On Aug 21, 6:52 pm, Dianne Hackborn hack...@android.com wrote: There is no permission for that (notice the error you are getting is NOT SecurityException).  My guess is

[android-developers] Re: How to slow down SensorEventListener ?

2009-08-24 Thread DaminouU
On Aug 21, 7:32 pm, Donn Felker donnfel...@gmail.com wrote: Cant you set a timer or time the events between readings? Example, when the sensor is fired (which goes very fast as you know) throw a simple if(mTimeElapsed 2000) { // do stuff } That would work, wouldnt it? On Fri, Aug 21,

[android-developers] Re: IllegalArgumentException occur: parameter must be a descendant of this view in ViewGroup.java:2454

2009-08-24 Thread Justin
This issue still happened in Donut. I want to describe my structure first. There are two main view in my Activity, one is Gallery another is a FrameLayout, I named it FullSizeViewer which can show fit-to-screen photo. When tapping a photo in Gallery, the screen changes to FullSizeViewer.

[android-developers] Re: onCreate -Prob?

2009-08-24 Thread Chaoz1336
they ARE compatible... Its NOT like I would use them directly out of a j2me .class file, it works fine with interfaces, otherwise wouldnt my code proceed that far. I only got the prob with the error mentoined above, ... =/ --~--~-~--~~~---~--~~ You received this

[android-developers] Re: adc2 submission site

2009-08-24 Thread sleith
i agree with you there's so many things that can happen to anyone and anytime that may make him fail to submit his apk On Aug 24, 2:20 pm, an0 an0...@gmail.com wrote: If the time window is too small, any little problems may cause you miss it. Also consider the sudden surge of submissions in

[android-developers] Re: IllegalArgumentException occur: parameter must be a descendant of this view in ViewGroup.java:2454

2009-08-24 Thread Justin
Could you kindly told me which version of Donut will have the solution of this issue? When can we download the Donut with the solution of this issue? On 8月24日, 下午3時12分, Romain Guy romain...@google.com wrote: This issue is fixed in Donut but the source code available in the open is not the

[android-developers] Error to add WAV file into Android database

2009-08-24 Thread Dany BREARD
I'm so lost to choice the true name and description of wav file which I want to add into Android database: ContentResolver cr = getContentResolver(); try { // byte[] is the decoded message byte[] decoded = Base64.decode( oClient.getMsg(0).getMsgBase64() ); ContentValues

[android-developers] Re: bluetooth use in android

2009-08-24 Thread Stefano Sanna
Hi Dianne, thank you for highlighting this. I started working on Bluetooth API for myself, just for accessing Bluetooth sensor modules. I've shared the library to the community for people interesting playing with this kind of devices, but it is not intended to be nothing more than this :-) I'm

[android-developers] Re: List of running process.

2009-08-24 Thread Ramesh Anandhan
Yes, I am able to get the list process running in the background. I had used ActivityManager class. Regards, Ramesh A On Wed, Aug 19, 2009 at 8:42 PM, Jack Ha jack...@t-mobile.com wrote: Are you trying to do this programmatically? -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・

[android-developers] Re: system privileges on emulator

2009-08-24 Thread Asad Zia
Thanks Dianne and Yusuf for the replies. I am using system image shipped with Android SDK. I guess I have to build a new system image from source code and figure out a way to sign it with my own certificate. There seems to be no documentation on how to interrupt Android build system in order to

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-24 Thread suchita bhardwaj
Hi, I am also facing the same problem. Can anyone suggest something? On Mon, Aug 24, 2009 at 12:00 PM, ANKIT SOMANI ankitsomani...@gmail.comwrote: Problem is with the Child activity, with the Theme.dialog 2009/8/24 ANKIT SOMANI ankitsomani...@gmail.com Hi all, I am facing a strange

[android-developers] About ADC.

2009-08-24 Thread Mike
Hello, i have two questions about ADC: Is there a size limit for an application? Right now my game is at about 6MB, but it will most likely exeed 10MB. Is it possible to update the application after it has been submitted? (For additional content/bug fixes?) Thanks, Mike.

[android-developers] Re: Virtual Keyboard on custom input field

2009-08-24 Thread Ashwini
Figured this one out. Launched the virtual keyboard and got the keys through dispatchkeyevent. Works fine! Thanks, Ashwini On Aug 18, 9:31 am, Ashwini ashwinibha...@gmail.com wrote: Hi, Is is possible to get the virtual keyboard key events on a custom input field ? I tried using

[android-developers] Re: Displaying virtual keyboard in a custom View

2009-08-24 Thread LambergaR
Thank you very much for all the responses. I finished up simply using inputMethodManager.toggleSoftInputFromWindow ( this.getWindowToken (), InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY ); the problem was actually quite easy to solve!

[android-developers] Re: getting all the resources from other apks

2009-08-24 Thread Spektor Yaron
Thanks Dianne for all your help, i want to make sure i understand: it will be done very differently than what you are describing here (rather would probably be something like the approach I was describing before). meaning querying for the resource ids reliyng on thier sequential nature? and then

[android-developers] Re: Dialog windowBackground makes parent window go black

2009-08-24 Thread LambergaR
I think that the easiest way to solve this problem is to set the theme in your manifest file to Theme.Dialog and then simply say requestWindowFeature ( Window.FEATURE_NO_TITLE ); custom = new Custom(getApplicationContext ()); setContentView ( custom ); Works like a charm! :) On 22 avg., 07:37,

[android-developers] Which protocal impemented in IM package in Android Donut

2009-08-24 Thread Kerr
Dear all, Instant Message(IM) is one app in Donet vertion, But there is no official IM document, if developper want to design their own IM for some case, what task should be done? for example? 1, Which protocal this IM used, XMPP or others? 2, Has IMPS protocal been implemented in the IM code, or

[android-developers] Clickable Desktop Widget

2009-08-24 Thread Alex Corbi
Hi guys, i'm implementing a simple Widget that toggles on/off a service on my App, I've extended a AppWidgetProvider class and succesfully defined the xml appwidget-provider file. The question is, how can i register a OnClikListener so i know when the user clicks the widget on the desktop (once

[android-developers] How to read timestamp

2009-08-24 Thread DaminouU
Hi, I would like to read timestamp from sensorEvent. I read that timestamp is The time in nanosecond at which the event happened . So, if event_1 happened two seconds before event_2, timestamp_event_2 - timestamp_event_1 = 2 000 000 000 ? Is it true? If I am right, I have a problem because I

[android-developers] Re: Download file

2009-08-24 Thread engin
Hi I am trying to download something from server.I am downloading using ftpclient but problem is this can ı use download manager of telephone. The reason that ı want to use is to get notifications. On Aug 23, 4:25 pm, engin enginarsla...@gmail.com wrote: Hi, how can we download a file from

[android-developers] Re: Download file

2009-08-24 Thread engin
Hi I am trying to download something from server.I am downloading using ftpclient but problem is this can ı use download manager of telephone. The reason that ı want to use is to get notifications. On Aug 23, 4:25 pm, engin enginarsla...@gmail.com wrote: Hi, how can we download a file from

[android-developers] android 1.5 to google maps API

2009-08-24 Thread Honest
Hello, My project was working fine in android 1.5 but i need to use google maps so i used google APIS and did some change in API to merge MAPS functionality which was in other application.but some how i got exception and my application stopped working. It is even not starting so can some one

[android-developers] Re: android 1.5 to google maps API

2009-08-24 Thread Honest
It seems the problem is in manifest file as i have put try catch every where yet it is giving message Application Closed Unexpectedly with only ok button so according to me the problem should be in in it. I am pasting the manifest file code please take a look at it and let me know. ?xml

[android-developers] Listen a keybord

2009-08-24 Thread SIDIBE Ali-Broma
Hello I search to to listen a some key by the followin code : tv.setOnKeyListener(new OnKeyListener() { @Override public boolean onKey(View v, int keyCode, KeyEvent event) { if (KeyEvent.ACTION_UP != event.getAction()) {

[android-developers] change seekbar progress color

2009-08-24 Thread jaimin
hi i am new to android . i want to change the color of progress of seekbar form orange that is default ot something different. i tried something like this: here is my code ?xml version=1.0 encoding=utf-8? layer-list xmlns:android=http://schemas.android.com/apk/res/ android item

[android-developers] Best/safest place to do cleanups(e.g. connection release) at Application level

2009-08-24 Thread Vikas
Hi, What is the best/safest place to do cleanups at application level? I am creating a single instance of DefaultHttpClient when the application starts up. Rest of the activities will be ustilizing same instance of client. Now I want to release all resources associated with it( or in other

[android-developers] How to root German G1 running on CRC37?

2009-08-24 Thread Christian S.
Hi, anyone has a step-by-step approach how to root a German G1 running on CRC37? 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] Re: How to read timestamp

2009-08-24 Thread DaminouU
I fixed my problem... So no need to answer ;) And sorry On Aug 24, 2:06 pm, DaminouU dam.le...@gmail.com wrote: Hi, I would like to read timestamp from sensorEvent. I read that timestamp is The time in nanosecond at which the event happened . So, if event_1 happened two seconds before

[android-developers] Re: About ADC.

2009-08-24 Thread Maps.Huge.Info (Maps API Guru)
I didn't read anything about size restrictions but the rules do say something about updates after submission. The easiest and surest way to find this out is to read the rules. They are quite clear and to the point. Search Google for ADC2 to find them. -John Coryat

[android-developers] Re: adc2 submission site

2009-08-24 Thread Maps.Huge.Info (Maps API Guru)
There is nothing in the rules to prevent you from releasing your app to the market after August 1st, so what's the big deal? I would suggest that anyone who plans on submitting an app to ADC2 submit it first to the market for debugging and to catch unforeseen problems. -John Coryat On Aug 24,

[android-developers] Survey for french Android developers

2009-08-24 Thread arnouf
Hi everyone, This message concerns especially french guys (not necessary living in France). I'm making a study about french Android developers and contests (ADC2, Samsung Mob!le). Less than 3 minutes are sufficient to answer.

[android-developers] android widgets on WVGA

2009-08-24 Thread vishal bhoj
Hello Everyone, I am trying to run widgets on wvga resolution emulator. But with such a wide screen I thought I could populate more number of widgets but looks like the same number of widgets would fill as in hvga screen. I have set the *ro*.sf.lcd_density=220; I could layout 3 clocks widgets;

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-24 Thread ANKIT SOMANI
This Problem is with the Cupcake 1.5 release, I tried it with 1.1 it was working there. Regards ~Ankit Somani 2009/8/24 suchita bhardwaj suchi.bhard...@gmail.com Hi, I am also facing the same problem. Can anyone suggest something? On Mon, Aug 24, 2009 at 12:00 PM, ANKIT SOMANI

[android-developers] Re: Clickable Desktop Widget

2009-08-24 Thread String
On Aug 24, 1:05 pm, Alex Corbi a.co...@gmail.com wrote: The question is, how can i register a OnClikListener so i know when the user clicks the widget on the desktop You send it through the RemoteViews object. Here's my code: RemoteViews views = new

[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?

2009-08-24 Thread legerb
I have the latest SDK 1.5r3, modified the android_usb.inf and installed the usb driver. But still the device is not recognized by the ADB. If adb in r3 supports Samsung devices directly, then the problem is in the drivers? --~--~-~--~~~---~--~~ You received this

[android-developers] Re: XML-RPC

2009-08-24 Thread Wouter
No one has an idea? On 22 aug, 14:00, Wouter wouterg...@gmail.com wrote: Hey, I am using the android xmlrpc client (http://code.google.com/p/android- xmlrpc/) to consume a xml-rpc webservice. I can call the webservice and get data back but I want to save the received data in own made

[android-developers] Re: android 1.5 to google maps API

2009-08-24 Thread Jack Ha
Can you post the logcat exception stack track here? -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc.

[android-developers] Re: Error Code 5: Database is locked

2009-08-24 Thread Armond Avanes
So how can I create an in-memory database? I just took a quick look at the API and couldn't find any. Cheersss, Armond develop...@googlegroups.com] On Behalf Of Andrei Sent: Monday, August 24, 2009 7:35 AM If your write time take long i would try this I would create another in memory

[android-developers] Re: Adding Threshold to Bitmap Images

2009-08-24 Thread Streets Of Boston
You mean 'threshold' as a color-effect (turning a pic into a black and white (no grey) image)? On Aug 24, 1:09 am, Abdul Mateen abmat...@gmail.com wrote: Hi, I have a question about adding a threshold images into bitmap images, can this be possible with the Android SDK, if not can anyone here

[android-developers] ADC and autoupdate?

2009-08-24 Thread Sebastian
While considering different possible scenarios for app conflicts during ADC judging (i.e. someone installed the app from the market, got the latest update, and is now offered an older version for judging) I came up with an interesting posibility. What happens if my app has auto update

[android-developers] Re: update for syncML (client) and android

2009-08-24 Thread Tdj
hello, On Jul 28, 5:49 pm, angelo asant...@yahoo.co.uk wrote: funambol do have a second release of thesyncmlclient which did do contacts,events and tasks but I couldnt get it to work with my companyssyncmlserver (the paths were incorrect).. Unfortunatly my knowledge of ant and all the

[android-developers] Re: About ADC.

2009-08-24 Thread String
On Aug 24, 10:39 am, Mike internet...@hotmail.com wrote: Is it possible to update the application after it has been submitted? From http://code.google.com/android/adc/adc2_terms.html: There is no opportunity to improve or modify an application between the First and Second Rounds of Judging.

[android-developers] Re: Clickable Desktop Widget

2009-08-24 Thread Alex Corbi
Thanks, i appreciatte the help. On Aug 24, 4:27 pm, String sterling.ud...@googlemail.com wrote: On Aug 24, 1:05 pm, Alex Corbi a.co...@gmail.com wrote: The question is, how can i register a OnClikListener so i know when the user clicks the widget on the desktop You send it through the

[android-developers] Re: update for syncML (client) and android

2009-08-24 Thread Tdj
I made some test and : o it works fine with my.funambol.com to sync contacts and calendar, o I modify the remote database name for SOGo, and it doesn't work... David. On Aug 19, 5:22 pm, Tdj david.c...@gmail.com wrote:       Hello, On Jul 28, 5:49 pm, angelo

[android-developers] Re: Listen a keybord

2009-08-24 Thread Dianne Hackborn
Probably the view doesn't have focus. On Mon, Aug 24, 2009 at 6:21 AM, SIDIBE Ali-Broma jahbr...@gmail.comwrote: Hello I search to to listen a some key by the followin code : tv.setOnKeyListener(new OnKeyListener() { @Override public boolean onKey(View

[android-developers] Re: getting all the resources from other apks

2009-08-24 Thread Dianne Hackborn
On Mon, Aug 24, 2009 at 4:08 AM, Spektor Yaron spekt...@gmail.com wrote: it will be done very differently than what you are describing here (rather would probably be something like the approach I was describing before). meaning querying for the resource ids reliyng on thier sequential nature?

[android-developers] Re: ListView with multiple buttons, how do I detect which View the buttons were pressed in?

2009-08-24 Thread Doug
Views have a dedicated field you can use to store your own identifiers. You should put some value that uniquely identifies the view into it's 'tag' member setTag(Object). This member is there for you to put just this kind of info into. Then, when you get the onClick event with the view, just

[android-developers] Re: onCreate -Prob?

2009-08-24 Thread Doug
I suspect from your logging that your code may be trying to hit up a system service before the activity has it's context set up correctly. Basically, you can't do anything that requires Context until your 'onCreate()' method is called (you can do it *in* onCreate, just not before). On Aug 24,

[android-developers] Re: List of running process.

2009-08-24 Thread Yusuf Saib (T-Mobile USA)
ActivityManager: http://developer.android.com/reference/android/app/ActivityManager.html Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of

[android-developers] Re: change seekbar progress color

2009-08-24 Thread Mark Murphy
hi i am new to android . i want to change the color of progress of seekbar form orange that is default ot something different. i tried something like this: here is my code ?xml version=1.0 encoding=utf-8? layer-list xmlns:android=http://schemas.android.com/apk/res/ android item

[android-developers] Connecting multiple phones

2009-08-24 Thread julia_robinson
Hello . I am looking forward to developing an application which needs a cellphone to connect with about 20 cellphones in its vicinity (say about 50 metres) . 1. Which technology allows this ? 2. Does Android support it? --~--~-~--~~~---~--~~ You received this

[android-developers] Camera and video mode

2009-08-24 Thread raja sekhar
can any one help me to create this jobs i'm tried a lot but still failure. plz help me.thanks for ur help. i need these things . 1. Capture Image using Camera (with the name, format and path provided) 2. Capture Video (with the name, format and path provided)

[android-developers] Re: sql connection

2009-08-24 Thread akitto
Not 100% sure as i am away form my computer and out on my android phone, but I thought it would be more likely to be that you did not include the Microsoft sql jar for your deployed environment.? On Aug 22, 3:42 pm, engin enginarsla...@gmail.com wrote: Hi I wrote java code that connects remote

[android-developers] Re: Software Packaging Problem: How to create an Android installer (apk) ?

2009-08-24 Thread Andrew Shu
Bryan, In the Android developer docs (http://developer.android.com/guide/ publishing/app-signing.html#releasecompile) it mentions 2 build tools- one being Eclipse and the other Ant. It sounds like you want to look up more information about Ant and finding or writing tools that use it. I

[android-developers] How to get stream of Audio

2009-08-24 Thread tommylion
Hi all, I used Class MediaRecorder to play mp3 file, the source like this: -- MediaRecorder recorder = new MediaRecorder(); recorder.setAudioSource(MediaRecorder.AudioSource.MIC);

[android-developers] How to use motion events with multiple layouts

2009-08-24 Thread andr0id
Hi everyone, I'm beginning in android development, and I've stumbled upon a problem. My application has different layouts stored in xml files, and I use motion events such as onFling or onSingleTapup. These motion events seem to apply whatever layout i'm in. My problem is simply identifying

[android-developers] using SQLiteOpenHelper outside emulator

2009-08-24 Thread robin bakkerus
Is it possible to use/test the SQLiteOpenHelper outside the emulator (to speed up development). The problem is that constructor of the SQLiteOpenHelper needs an Android.context.Context. Hence is is possible to mimic the context. --~--~-~--~~~---~--~~ You received

[android-developers] Spinner widget setposition

2009-08-24 Thread Federico Paolinelli
Hi all, I am having some problems using a spinner with a SimpleCursorAdapter. Basically, my activity ships a button to start a new activity that add new items to the table the spinner is linked to. Everything works beautifully, but the problems started when I wanted to set the spinner to the last

[android-developers] call outputstream

2009-08-24 Thread slenzi
Is there any way to access the voice outputstream during a call, such that you could intercept and manipulate the byte data before its sent over the air? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Hook into SMS delivery

2009-08-24 Thread Philipp
Hi folks, I'm just writing a little app to have a convenient way to send SMS through a free web-base SMS gateway. This wouldn't be much of a problem for itself, but for the reason of seamlessness, I would like to fully integrate the program into Android. When the user sends a new message, a

[android-developers] Re: Simple Java Question

2009-08-24 Thread Shawn Brown
Rather wasteful on a platform like Android. Are there any other options other than Formatter? I think it does exactly what you want         final Formatter f = new Formatter(); use Formatter(Appendable a) StringBuilder sb = new StringBuilder(); final Formatter f = new Formatter(sb);  

[android-developers] Re: EMMA Code coverage and JUnit

2009-08-24 Thread Tim
Just to follow that up, I was able to get it working as well for a custom project (thanks Gabor!). I had to make some minor changes to the instructions to get it all to work for me, particularly with the SDCard on cupcake. If folks are interested, here's what I did:

[android-developers] Re: Android 1.5 SDK now available

2009-08-24 Thread RichardMAN
Hey guys Does anyone know would the other Google Maps API service classes such as GDirections be available to Google API in android? Regards RichardMAN --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] How to handle this kind of situation within my code

2009-08-24 Thread Shany
Hey guys, I was wondering on this for quite a bit but couldn't find any solution! 1. My app bind to a service (through AIDL interface) 2, The service runs in the backround and send to my activity a value every now and than (and also a notification is sent) When I click the HOME button, and than

[android-developers] setContentView of called activity based on Calling Activity Intent

2009-08-24 Thread gonzo
Hi, I'm fairly new to Android Development and i'm having slight trouble with activity interaction. I have one activity that calls another and passes with its intent some text. At the called activity i wish to set the Content View based on the received string. I've been stuck for hours now.

[android-developers] java question

2009-08-24 Thread srinivasarao
hi Sir, Take Class name as input (command line) and loads that class Dynamically and calls the main method in that class..how will we do that? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Connecting multiple phones

2009-08-24 Thread julia_robinson
Hello . I am looking forward to developing an application which needs a cellphone to connect with about 20 cellphones in its vicinity (say about 50 metres) . 1. Which technology allows this ? 2. Does Android support it? --~--~-~--~~~---~--~~ You received this

[android-developers] Hi Need help

2009-08-24 Thread Nishat
Hi All I am a new Android developer and i am trying some basic stuff like the hello world application. I am able to create a project and created a avd as well. when i am running the project i am getting the error : [2009-08-22 19:37:18 - HelloAndroid] Android Launch! [2009-08-22 19:37:18 -

[android-developers] Re: How do I Activate the camera application from my app?

2009-08-24 Thread Getto
No. Camera App scale down bitmap when you use android.media.action.IMAGE_CAPTURE action :-\ If you found a work around please let me know. .g On Aug 21, 9:21 am, Friso friso.kl...@gmail.com wrote: How can I get the full-size image from the camera? This method gives me a 256x192 pixels image.

[android-developers] Re: EMMA Code coverage and JUnit

2009-08-24 Thread Maya
hey Gabor, thanks a lot for your help. Actually i tried reproducing the same steps, it is working fine till emulator starts, it launches emulator but it does not shows the home screen i tried steps after that, doing adb remount and adb sync, it pushes all the neccessay files into the emulator,

[android-developers] ContentObserver

2009-08-24 Thread vivasvan
Hi, Is it possible to keep a ContentObserver alive in an application that does not have an activity, just broadcast receivers and services invoked through them? Thanks, V. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Recording Playing file simantaneously

2009-08-24 Thread bharath paturi
HI All, Is it possible to simultaneously play an audio file while recording via the microphone? Is there any API provided in Android SDK 1.5. When I start a recording audio in the standard way with the MediaRecorder class, and then start playing back audio in the standard way with the

[android-developers] Nike_Air_Force_1

2009-08-24 Thread gfgweg...@yeah.net
Nike_Air_Force_1 Nike_Air_Dunk Jordan Ring Jordan Fusion Jordan 23 Mixture GucciFashion BOOTBape shoesASCIS Air_max_man ADIDAS SHOE http://www.vipmalls.com/ Shoes For Female http://www.vipmalls.com/ Woman BootSandal Nike_shox_woman Nike_Air_Jordan_w Jordan_Fusion_w Gucci woman Dunk_Shoe_woman

[android-developers] Re: Has ADC submission site opened?

2009-08-24 Thread Bagpiper
Hey all, I'm beginning to think that finding the submission site is part of the challenge ;) We're thinking of just publishing to the Android Market... Any news, please, Google friends? M On Aug 20, 2:45 pm, karthikr karthik.scintill...@gmail.com wrote: Why hasnt there been any update

[android-developers] Benefits of Android for Connectivity Reasons

2009-08-24 Thread salza
I am just thinking of a new application and I am pretty new to mobile OS. For my application it would be very important, that there is an easy connectivity between the smartphone and other blueetooth-able devices. In many articles I have read, that Android is the best OS regarding connectivity

[android-developers] Re: ListView touch problem

2009-08-24 Thread manigault
Maybe this will help you http://stackoverflow.com/questions/500264/android-multiple-actions-on-a-list-view-focus-issue On Jul 30, 5:26 pm, legerb drim...@gmail.com wrote: Each list item in myListViewis a linkified TextView, and a regular TextView. The problem is that once there is a touchable

[android-developers] Re: My emulator is running 100% CPU, it's annoying..

2009-08-24 Thread Chauncey Chen
Hi All, Mine is also occupying 100% CPU. I am a fresh man and just now created a HelloWorld in Eclipse. When I ran it as an Android application, after a while, it keep 100% occupying some minutes and only the text Android_ with black background in the emluator. My OS is Windows XP and Eclipse

[android-developers] Android Developers

2009-08-24 Thread sathya
Provides project's news, tips and tricks and development examples. android-developers.blogspot.com/ To support you in your efforts, Google has launched the Android Developer Challenge, which will provide awards for great mobile apps built on the Android ... code.google.com/android/

[android-developers] How to communicate to a socket in UNIX domain Datagram socket (IPC between Java and Linux application)?

2009-08-24 Thread Arun
Dear Friends, I am looking for a solution to this problem ( IPC between Java and Linux application): - I have an application in LINUX that has a socket created using UNIX Domain DataGram socket (by calling socket(PF_UNIX, SOCK_DGRAM, 0)), and it binds to this socket with address /temp/myserver.

[android-developers] Re: About ADC.

2009-08-24 Thread Fallen Leaf
If your question is if you can submit an update after the 31st August deadline according to the rules you cannot. If the update is before the deadline I'm not sure since the submit website isn't online yet. And about the size limit in the rules I haven't seen anything but I guess when they put

[android-developers] ADC 2 Submission Site -- Now live

2009-08-24 Thread David McLaughlin (Android Advocate)
The submission site for ADC 2 is now live! For full details, see our blog post: http://android-developers.blogspot.com/2009/08/android-developer-challenge-2-open-for.html Enjoy, David --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] fire up onKeyDown

2009-08-24 Thread petter
Hi, I' d like to fire up onKeyDown() event from my source code (for example from Activity). I want it, because i'd like to create program for remote keyboard, which will be PC keyboard. PC will send to mobile throw Socket message and mobile will fire up event from message in socket. Message will

[android-developers] Jdbc driver problem

2009-08-24 Thread Alessio
Hi all. Like object i have some problem with jdbc driver. I wanna connect to a database server (postgresql) without write some php script server side to comunicate with client (android mobile phone), so can i use this driver? http://jdbc.postgresql.org/ I try it in a normal java program and it

[android-developers] How to look up position in spinner from string array?

2009-08-24 Thread Fabian Sturm
Hello all! I have a pretty simple question, but I am still hammering my brain with finding an elegant solution. I have a spinner filled with an array defined as xml resource: string-array name=distances itemitem1/item itemitem2/item /string-array Whenever I close the

[android-developers] Jdbc driver problem

2009-08-24 Thread Alessio
Hi all. Like object i have some problem with jdbc driver. I wanna connect to a database server (postgresql) without write some php script server side to comunicate with client (android mobile phone), so can i use this driver? http://jdbc.postgresql.org/ I try it in a normal java program and it

[android-developers] Speech Recognition on the Emu PROB

2009-08-24 Thread Vexile
Does anyone get a solution for running speech recognition on the emulator? Or is there any other way to do the recognition on emulator? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Nike_Air_Force_1

2009-08-24 Thread hdgjhf fdjdfg
Nike_Air_Force_1 Nike_Air_Dunk Jordan Ring Jordan Fusion Jordan 23 Mixture GucciFashion BOOTBape shoesASCIS Air_max_man ADIDAS SHOE http://www.vipmalls.com/ Shoes For Female http://www.vipmalls.com/ Woman BootSandal Nike_shox_woman Nike_Air_Jordan_w Jordan_Fusion_w Gucci woman Dunk_Shoe_woman

[android-developers] Re: XML-RPC

2009-08-24 Thread Mark Murphy
No one has an idea? score=new FilmScore(); score.votes=response.get(votes); score.total=response.get(total); score.average=response.get(average); -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html

[android-developers] Re: ADC and autoupdate?

2009-08-24 Thread Dan Sherman
Are you possibly able to point out a toolkit that provides an auto-update feature? - Dan On Mon, Aug 24, 2009 at 11:23 AM, Sebastian sdelm...@gmail.com wrote: While considering different possible scenarios for app conflicts during ADC judging (i.e. someone installed the app from the market,

[android-developers] how to porting jarkata commons lib to android?

2009-08-24 Thread Terry
hi, everyone. jarkata commons lib is very useful for our everyday development. is there any porting to android? or is there a good way to porting the jarkart commons libs to the android environment? --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Lossless rotation of a jpeg image in Android (without fully decoding the image). How to?

2009-08-24 Thread RaulHK
Hello, I would appreciate to hear from you what would be the available options in Android to perform a lossless jpeg rotation of a jpeg image - Rearranging the image data from landscape to portrait by rotation without ever fully decoding the image. My problem is that my device's camera always

[android-developers] Re: disable HOME key and right soft key

2009-08-24 Thread Dimitar Dimitrov
@Mark Murphy, I think by right soft key, he meant the BACK button. You can disable the BACK button, but I too think that you can't do the same for the HOME button. With the code you have posted, you disable default key handling for all buttons, except HOME (not possible, AFAIK) and BACK

  1   2   3   >