Re: [android-developers] Re: Deleting An Application with ContentProvider Other Applications not working

2010-03-24 Thread Rajiv
Hi Kantesh, Thanks for the reply. Yes i have used the cursor in the following way: Uri allTitles = Uri.*parse*(com.sky.android.project.projectname/data ); Cursor c = managedQuery(allTitles, *null*, *null*, *null*, username desc); c.close(); Regards Rajiv On Tue, Mar 23, 2010

[android-developers] Displaying a PDF file in android application

2010-03-24 Thread Parse
Hi.. I have a pdf library to render pdf file in desktop application. I want to use it in android application. Can you help me, which layout should I use to display pdf file?? P.S. : The library displays the pdf page on JPanel, Container for desktop application. -- You received this

[android-developers] Re: hello-Jni Andriod ndk

2010-03-24 Thread Anandi
Can you send the complete logcat and the steps you followed to execute the application? Are you running NDK's hello-jni application? If yes then follow this link: http://developer.android.com/sdk/ndk/index.html Anu On Mar 23, 11:56 pm, rizwan rizcs...@gmail.com wrote: Hi , I m trying to run

Re: [android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-24 Thread Paul Tongyoo
At the moment I'm just running the code against the 2.0 emulatorhm. On Tue, Mar 23, 2010 at 8:08 PM, Streets Of Boston flyingdutc...@gmail.comwrote: ... very strange, how come it works fine on my Droid (2.0.1), on my G1 (1.6) and my Nexus One (2.1-u1)...? I just tried it on all

[android-developers] Internal links in Webview

2010-03-24 Thread Farha Ansari
How can we find out when we click an internal link in WebvIew? Thanks, Farha -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email

[android-developers] Sequence of Events for video playback using MediaPlayer

2010-03-24 Thread Sandeep Prakash
Hi All, I have 2 doubts in using the MediaPlayer class exposed in android: 1. What is the correct sequence of events for playing the same video clip multiple times without exiting the player? The sequence I am following is: (surfaceCreated)-new MediaPlayer-setDataSource-setDisplay-

[android-developers] Re: Is it possible to embed an app widget in an activity?

2010-03-24 Thread Kumar Bibek
I don't think this is possible. Morever, I guess, there is no practical use of this. AppWidgets are not meant to be put on an Activity. Thanks and Regards, Kumar Bibek On Mar 19, 11:05 am, Benny dongdong.w...@gmail.com wrote: Hi, I want to embed the analog clock in my application. I use

[android-developers] Re: Displaying Installed Packages name

2010-03-24 Thread perumal316
Hi All, I have managed to list down all the installed packages. I have used ArrayList and ArrayAdapter to list down the installed packages. Now if a user click on any one of it I want to start the respective activity. How do I go about doing it? Because to use an intent to start the activity I

[android-developers] Re: Is this the limitation of Intent.ACTION_SEND

2010-03-24 Thread AJ
Kantesh you got it right :) - AJ On Mar 24, 7:14 am, Kantesh kantesh@gmail.com wrote: Hi mike,  u r telling about the limitation made by network operators, but Aj is about  where his framework limiting it. On Mar 24, 2:50 am, AJ ajeet.invinci...@gmail.com wrote: Hi Mike I think

[android-developers] Problem on getting SOAP response

2010-03-24 Thread Prasanjit Deka
While connecting to web service i am getting an Exception: SoapFault - faultcode: 'soap:Client' faultstring: 'System.Web.Services.Protocols.SoapException: Server did not recognize the value of HTTP Header SOAPAction: http://115.108.40.174/hionstockws/GetHomePageRecos. Here the code is Please help

[android-developers] cannot install radio update

2010-03-24 Thread Nate
I have a G1 Dev Phone. I am unable to install the 1.6 radio update from this page: http://developer.htc.com/adp.html The file name is: ota-radio-2_22_19_26I.zip I push it to the phone as update.zip, do a shell sync, wait 5 minutes, reboot into recovery mode, press alt+L, then alt+S. I get: --

[android-developers] Re: In-App Purchasing and the Market Agreement

2010-03-24 Thread Jeremy Slade
My interpretation, not to be confused with legal advice: Add-on products purchased via an app do not qualify as products distributed via the Market. However, something like a pro version of an app, purchased via a lite version that was distributed via the Market, would be subject to this part of

[android-developers] Re: What's The Typical Hourly Rate for Freelance Work?

2010-03-24 Thread ko5tik
On Mar 24, 6:01 am, Matt mattsjor...@gmail.com wrote: I've recently been contacted about doing some freelance Android app development via the email developer button on an app I have in the Market.  It's my first freelance opportunity and I'm not really sure what I should charge - what's the

[android-developers] Re: Dynamic Table Problems

2010-03-24 Thread Chirayu Dalwadi
Please Reply -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] Re: Displaying a PDF file in android application

2010-03-24 Thread MobDev
Well obviously not all J2SE functionality (and thus libraries) are compatible... You could have a look in the Reference (http://developer.android.com/ intl/fr/reference/packages.html) which of those classes (the one you were mentioning like JPanel tec) are available.. If those aren't then I'd

[android-developers] Re: glDrawElements vs glDrawArrays with glColorPointer in opengl es GL10

2010-03-24 Thread Perty
Hi Robert, thanks for your help. Yes, thats makes sense and it's exactly how I do it I think. But does the relationship (1 to 1 to 1 to 1, vertexarray,colorarray,normalarrat, textmaparray) still apply when you use glDrawElements ? For example a when creating a 3D cube, the same vertex could

[android-developers] Re: Stop an Activity (Urgent)

2010-03-24 Thread SREEHARI
Use finish() inside onStop() of the activities u want to hide. A starts B. B starts C.. If u give finish() inside onStop() of B. Then u can directly go to A from C by clicking the back button.. Regards, SREEHARI On Mar 19, 8:02 pm, Chirayu Dalwadi chirayu.dalw...@gmail.com

[android-developers] ScrollableSurfaceView and ScrollableGLSurfaceView

2010-03-24 Thread Datoh
I would like to share with you ScrollableSurfaceView and ScrollableGLSurfaceView, which are respectively, a scrollable SurfaceView and a scrollable GLSurfaceView. See this web page: http://datoh.com/android/code/ScrollableSurfaceView/ Regards, Datoh. http://twitter.com/datoh TabDroid -

[android-developers] Re: Accessing External Database

2010-03-24 Thread Bob Kerns
Brion gave some good suggestions, so let me address this from a more architectural standpoint. You don't WANT to access the tables direction. A web service acts as an intermediary -- it sits between your application and the database. This allows more control over how the application can access

[android-developers] IPSec and Android

2010-03-24 Thread Ofer Goren
Hi all. I was wondering if Android supports IPSec. I have a Linux application, written in C, that I need to port to Android. I couldn't find the ipsec related header files. Do I need to download something in order to add support for this feature? Thanks, Ofer -- You received this message

[android-developers] video conversion from .flv to .mp4

2010-03-24 Thread Guru
I have been trying to convert .flv to .mp4 in the server with ffmpeg ,and stream it through the android browser:-This is the command I have been using : ffmpeg -i *input.flv* -f mp4 -vcodec mpeg4 -r 25 -b 56 -s 610x340 -acodec aac -ac 2 -ab 64 -ar 44100 *output.mp4* The output streams like a

Re: [android-developers] Re: Maximum character that we can send to SMS application.

2010-03-24 Thread timo prill
http://en.wikipedia.org/wiki/SMS [...] it was necessary to limit the length of the messages to 128 bytes (later improved to 140 bytes, or 160 7-bit characters), so that the messages could fit into the existing signaling formats[...] cheers Bob Kerns schrieb: It doesn't matter. The first S

[android-developers] Re: USB driver doesn't work with Xperia 10

2010-03-24 Thread Kirrrilka
I did it!!! I connected Xperia 10 to Windows!!! I used Android usb driver r3. I modified android_winusb.inf Add the foloowing into [Google.NTx86] and [Google.NTamd64] sections: ;Xperia X10 %SingleAdbInterface%= USB_Install, USB\VID_0FCEPID_E12E %CompositeAdbInterface% = USB_Install,

[android-developers] Re: Problems With webview and UTF-8

2010-03-24 Thread Bob Kerns
Sigh. I wish it weren't done that way. The Description contains text. Sometimes that text is intended to be interpreted itself as HTML. When you read the outer XML (i.e. the Description tag), the contents are interpreted as text. The lt; turns into . Now, if you want to properly display that,

[android-developers] coonection between MediaRecorder and PVMediaRecorder

2010-03-24 Thread Anandi
Hello all, Can anyone please explain me how JNI implementation of MediaRecorder api's invokes the PVMediaRecorder's methods? Thanks in advance Anu -- 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: Problem on getting SOAP response

2010-03-24 Thread Bob Kerns
Your server is telling you the problem -- you have the wrong value for SOAP_ACTION. It's likely that the correct value is . SOAPAction is similar in intent to METHOD_NAME. It is not a URL; it does not have to have a protocol and hostname,. But if you're supplying the method in the body of the

Re: [android-developers] video conversion from .flv to .mp4

2010-03-24 Thread Mark Murphy
Guru wrote: I have been trying to convert .flv to .mp4 in the server with ffmpeg ,and stream it through the android browser:-This is the command I have been using : ffmpeg -i *input.flv* -f mp4 -vcodec mpeg4 -r 25 -b 56 -s 610x340 -acodec aac -ac 2 -ab 64 -ar 44100 *output.mp4* The

Re: [android-developers] Re: Problem on getting SOAP response

2010-03-24 Thread Prasanjit Deka
Thanks a lot for ur reply, I want to ask u one more doubt, I got a envelope response in a String , The structure of String is like that. 03-24 17:36:52.588: INFO/R1(216):

Re: [android-developers] video conversion from .flv to .mp4

2010-03-24 Thread Guru
Hi Marck...did not quite understand what this command actually does..?I got this on my command line Hinting file with Path-MTU 1450 Bytes Saving to src.flv: 0.500 secs Interleaving On Wed, Mar 24, 2010 at 5:39 PM, Mark Murphy mmur...@commonsware.comwrote: Guru wrote: I have been trying to

Re: [android-developers] video conversion from .flv to .mp4

2010-03-24 Thread Mark Murphy
Guru wrote: Hi Marck...did not quite understand what this command actually does..?I got this on my command line Hinting file with Path-MTU 1450 Bytes Saving to src.flv: 0.500 secs Interleaving http://groups.google.com/group/android-developers/browse_thread/thread/8f8adc65f0d8c5d7

Re: [android-developers] video conversion from .flv to .mp4

2010-03-24 Thread Guru
Thanks Mark.I tried the command with no luck.:( On Wed, Mar 24, 2010 at 5:56 PM, Mark Murphy mmur...@commonsware.comwrote: Guru wrote: Hi Marck...did not quite understand what this command actually does..?I got this on my command line Hinting file with Path-MTU 1450 Bytes Saving to

[android-developers] Re: What's The Typical Hourly Rate for Freelance Work?

2010-03-24 Thread Warren
I'm also interested to hear what people are thinking. I have a similar situation and was planning to ask for $50 per hour. Does that seem too low? On Mar 24, 3:24 am, MobDev developm...@mobilaria.com wrote: mostly it's also based on experience and knowledge of the developer... As in a Junior

[android-developers] Integrate IPhone Safari like view in Android?

2010-03-24 Thread javame_android
Hi All, I want to implement IPhone safari like view in Android. The scrolling can be done using Gallery I think. But how to minimize the views as done in the IPhone Safari. The Android Browser also have minimized view, can anyone tell me how to implement it? Any help in this regard would be

[android-developers] listview doesnt repaint inside gallery when scrolling at random times

2010-03-24 Thread social hub
I have gallery which contains a listview. when you scroll sometimes the views inside the listview doesnt appear. i can see a shadow which belongs to listview but nothing inside listview appears i have tried using invalidateviews on listview whenever the view becomes selected. I am not sure how

[android-developers] Problem installing apk via code

2010-03-24 Thread A R
Hi, I am trying to install a apk file by starting Intent.ACTION_VIEW but in 1.6 and lower I see the initial install screen but on clicking on 'install' nothing happens. This works fine on N1... anyone else expereinced this? Am I doing somethig wrong? String fileName =

[android-developers] DatePicker - years prior to 2000

2010-03-24 Thread kanatacrude
This has problem has been mentioned before but for anyone that encounters a problem with the DatePicker refusing to select years earlier than 2000, the following snippet of layout solved my problem. DatePicker android:id=@+id/startdate_picker android:layout_width=wrap_content

Re: [android-developers] Platform 1.1 gone?

2010-03-24 Thread TreKing
On Tue, Mar 23, 2010 at 4:37 PM, Xavier Ducrohet x...@android.com wrote: However there is little point in using 1.1 as you can see from the chart at: http://developer.android.com/resources/dashboard/platform-versions.html That chart is nearly 3 months old. Is there any expectation of getting

[android-developers] Re: Avoid Black Screen on starting application?

2010-03-24 Thread javame_android
Hi, Thanks a lot Mark. That was really helpful. Thanks Regards Sunil -- 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: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-24 Thread Streets Of Boston
Note that the emulator's camera application is NOT the ones running on most actual devices. Test it on an actual device, a few of them if possible. On Mar 24, 2:35 am, Paul Tongyoo paul.tong...@gmail.com wrote: At the moment I'm just running the code against the 2.0 emulatorhm. On Tue, Mar

[android-developers] Is there a place to write temporary files

2010-03-24 Thread lordjoe
I am writing a content provider to access data in a zip file. The plan is to extract data as needed to temporary files since the API REQUIRES a file descriptor (as opposed to an input stream). The question is where can an Android app write files - we can assume these are small and regularly

Re: [android-developers] Is there a place to write temporary files

2010-03-24 Thread Mark Murphy
lordjoe wrote: I am writing a content provider to access data in a zip file. The plan is to extract data as needed to temporary files since the API REQUIRES a file descriptor (as opposed to an input stream). The question is where can an Android app write files - we can assume these are small

[android-developers] Re: listview doesnt repaint inside gallery when scrolling at random times

2010-03-24 Thread social hub
I kind of have this theory. Sometimes the listiview is not fast enough to give its size and bitmap to Gallery Widget when it requests the particular item size and bitmap. In this case item is listview and it didnt had time to give one or something the Gallery widget assumes it's an empty view and

[android-developers] Subscribe to onDialogClosed

2010-03-24 Thread draf...@gmail.com
Can anyone give me an example or explain to me how i subscribe to the onDialogClosed method of an EditTextPreference? http://developer.android.com/intl/fr/reference/android/preference/EditTextPreference.html#onDialogClosed%28boolean%29 I want to know when a dialog have had its OK or Cancel

Re: [android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-24 Thread Paul Tongyoo
Thanks Streets, I'll give it a shot. If the issue was due to missing hardware though, wouldn't I get a different (lower-level) type of error? Best, Paul On Wed, Mar 24, 2010 at 7:26 AM, Streets Of Boston flyingdutc...@gmail.comwrote: Note that the emulator's camera application is NOT the ones

[android-developers] Re: LOGV

2010-03-24 Thread André Barbosa
hi all, i want to see all the logs of android source code, i already tried alter the log.h (system/core/include/cutils), however, when i compile the android source code, the compile show me errors on some cpp files. Someone already did this change? what i have to modify in log.h to activate all

[android-developers] Informational: are there any charting packages for Android

2010-03-24 Thread Satya Komatineni
A few folks have asked me this question. Here is a link to the research I have started on this subject http://www.androidbook.com/akc/display?url=DisplayNoteIMPURLownerUserId=androidreportId=3465 Here is a brief summary JQuery based flot http://code.google.com/p/flot/ Chart Droid

Re: [android-developers] Re: In-App Purchasing and the Market Agreement

2010-03-24 Thread chris harper
I hate to say it but I have to agree with Disconnect. I re-read the agreement and it does say: 3.3 *All fees received* by Developers for Products *distributed* via the Market must be processed by the Market’s Payment Processor. To me that means any additional money that you make from any product

[android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-24 Thread Streets Of Boston
The system's cropping activity comes with the camera app (camera.git). Since the emulator's camera activity is very different, i can imagine that the cropping activity is not quite the same either or may not even exist on the emulator. If this is the case, then they(google) at least should've made

[android-developers] Re: What's The Typical Hourly Rate for Freelance Work?

2010-03-24 Thread Yahel
It really depends on where you are yourself. If it's your fist client and your fist job, you don't want to scare them away, after all this is the beginning of your portfolio. I'm french, I've been a freelance web developer for 10 years now, I live in a small town in the south, and I charge 80

[android-developers] Re: glDrawElements vs glDrawArrays with glColorPointer in opengl es GL10

2010-03-24 Thread Mario Zechner
You can't specify that with indices. Instead you will have to duplicate those vertices which share the same position but have different normals, colors and texture coordinates. Think of it this way: You have an array of vertices, each defined by a position, color, normal and texture coordinates.

[android-developers] Re: Maximum character that we can send to SMS application.

2010-03-24 Thread Yahel
Sorry I don't know the limitation of the Action_Send to SMS, but you can just try it by yourself, if your being truncated, then your reach the limit. But you are right to ask, because even though SMS stands for short message, almost all new phones allow you to send larger messages than the 140

[android-developers] ActivityGroup and LocalActivityManager

2010-03-24 Thread oriharel
Hi All! I need a to create a layout that holds to other layouts. each one of the layout should be populated by a different activity. I've done some research and came across the fact that I need to implement an ActivityGroup and use it's LocalActivityManager. problem is that I don't understand the

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

2010-03-24 Thread polyclefsoftware
Got my Nexus One today via FedEx. I'm in Lafayette, Louisiana USA. Has anyone in the US gotten a Droid? I'm happy with the Nexus...just wondering. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] ActivityGroup and LocalActivityManager

2010-03-24 Thread Mark Murphy
oriharel wrote: I need a to create a layout that holds to other layouts. each one of the layout should be populated by a different activity. Why? What do you think you gain versus just using ordinary Views? -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy

[android-developers] Persistent listening to text enteted across all apps globally?

2010-03-24 Thread John T. Haggerty
So I was planning to have an app to wake up and do something but I need to know if say @@ (at sign twice or similar gets pressed. To do that unfortunately that would require monitoring across all apps; if possible please I need to know 1. How best to do this and 2. Some potential code to be able

[android-developers] Re: ActivityGroup and LocalActivityManager

2010-03-24 Thread oriharel
ok, someone here wrote a nice web activity that I want to use. however, I want to use it differently, say adding an area on the top that will be populated by news feed or adds. his activity takes over the entire layout it resides in, and doesn't support adding another layout inside. so I want an

[android-developers] Re: What's The Typical Hourly Rate for Freelance Work?

2010-03-24 Thread JP
In the US: Careful with Section 1706, which is a powerful tool that the IRS uses to reclassify you as an employee. Over years, plus punitive penalties, this can add up to six figure amounts. Remember the guy that flew his plane into a building a couple months ago? BTW, in Germany, possibly other

Re: [android-developers] Re: ActivityGroup and LocalActivityManager

2010-03-24 Thread Mark Murphy
oriharel wrote: ok, someone here wrote a nice web activity that I want to use. however, I want to use it differently, say adding an area on the top that will be populated by news feed or adds. his activity takes over the entire layout it resides in, and doesn't support adding another

Re: [android-developers] Persistent listening to text enteted across all apps globally?

2010-03-24 Thread Mark Murphy
John T. Haggerty wrote: So I was planning to have an app to wake up and do something but I need to know if say @@ (at sign twice or similar gets pressed. To do that unfortunately that would require monitoring across all apps; if possible please I need to know 1. How best to do this and 2. Some

Re: [android-developers] Persistent listening to text enteted across all apps globally?

2010-03-24 Thread John T. Haggerty
what about a keyboard element added to the stock keyboard? Would Textwatcher work? On Mar 24, 2010 10:08 AM, Mark Murphy mmur...@commonsware.com wrote: John T. Haggerty wrote: So I was planning to have an app to wake up and do something but I need ... It is not possible, sorry. -- Mark Murphy

[android-developers] Re: In-App Purchasing and the Market Agreement

2010-03-24 Thread Yahel
3.3 *All fees received* by Developers for Products *distributed* via the Market must be processed by the Market’s Payment Processor. To me that means any additional money that you make from any product (i.e. app) that you distribute from the Market must go though the Market's Payment

[android-developers] Need help plz dot it

2010-03-24 Thread Ali Murtaza
Hi I want to use the alarm clock applicaiton in my applicaiton plz tell me how i will use i am new in android -- Ali Murtaza BCSF06M021 Research Assistant Data Virtulization Ware House PUCIT, Lahore, Pakistan ali.murt...@pucit.edu.pk -- You received this message because you are subscribed

Re: [android-developers] Persistent listening to text enteted across all apps globally?

2010-03-24 Thread Mark Murphy
John T. Haggerty wrote: what about a keyboard element added to the stock keyboard? Would Textwatcher work? You can only access key events from your own activities, with the exception of a couple of keys (e.g., CAMERA) for which there are broadcast Intents. -- Mark Murphy (a Commons Guy)

[android-developers] Record a presentation of android application

2010-03-24 Thread Kieu Anh Tuan
Hi, I'm looking for a tool to record a presentation of my application. Does anybody know an application that can do something like: http://www.youtube.com/watch?v=RUfTzdxON4E I know that I could use some tools to record my PC screen with an emulator on it, but I mean, instead of have a mouse

[android-developers] Query 1:

2010-03-24 Thread Dinesh Adwani
Could you please tell me how to use notification code inside Broadcast Reciever. -- 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

[android-developers] Favor From a Developer With a Samsung Moment

2010-03-24 Thread Little Killers
The game crashes when it starts on this phone and only this phone very odd Can some one with a Samsung Moment Down load our app Bad-A** Game Lite and connect it to the debugger and give us the stacktrace. Thanks a bunch!!! Chad -- You received this message because you are subscribed to the

[android-developers] Deploying shared resources

2010-03-24 Thread Jargon
Hi, We are investigating the possibilities to package deploy platform UI extensions which can contain both Java code and resources - which then can be (re-)used by applications using uses-library tag in the AndroidManifest.xml. One solution which has been discussed was to use the aapt -x option

[android-developers] How to get the actual(measured) view size before doing layout?

2010-03-24 Thread lewis.lee
I wrote some layout xml files. In this files, there are some views that the attributes, android:visibility, are View.GONE. And, in the code, the attributes are changed with View.VISIBLE. I already have checked that the layoutParams(i.e. left, top, right and bottom) was updated after doing layout

[android-developers] Estimated Time App Verification

2010-03-24 Thread leo
Hello, I'm planning to develop an application for android and I want to submit the application to Android Market. My question how long my application will get published since the app submitted? Please give the estimated time for this process. Thanks, -- You received this message because you

[android-developers] LED is not working

2010-03-24 Thread AKarmakar
Hi All, I wrote a small application to test LED. Here is the code snippet: private void RedFlashLight() { NotificationManager nm = ( NotificationManager ) getSystemService( NOTIFICATION_SERVICE ); Notification notif = new Notification(); notif.ledARGB = 0xFFff;

[android-developers] Please Help!!!!

2010-03-24 Thread Amir
Hi I need farsi font! And How Android Persian support? Plese help -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] calling SOAP service in android

2010-03-24 Thread Lakshmi
Hi Developers, please provide me a sample app by calling SOAP service and display the results in list view. -- 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] android keyboard

2010-03-24 Thread Jay
Is it possible, that you can update the dial pad like the dial pad of the iphone for the on screen android keyboard -- 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] Update to Platform Versions.

2010-03-24 Thread rpond
Would it be possible to get an update to http://developer.android.com/resources/dashboard/platform-versions.html 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] how to get the camera's focal length

2010-03-24 Thread g k
Hello, I allready saw Kumar asking - Subject: [android-developers] How to get camera specs. - msg#00106 , Haven't seen any response on this. Thanks, gilad -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Certificates

2010-03-24 Thread ABhi
Hi, I've this doubt regarding the certification authorities that Android phone supports. With my previous experience with J2ME, which states that some of the phones doesn't support thawt, while some other doesn't support verisign and so on. Net, net, there wasn't any certification authority

[android-developers] Hi has anyone met problem about usb driver of XPERIA X10 (mini)?

2010-03-24 Thread Qingyan(Evan) Liu
Hi everyone, Recently I got a phone Sony Ericsson XPERIA X10 mini. When I wanted to connect it to my PC to develop on it, I met the usb driver problem. Firstly I enabled the usb debugging of the handset. Then I plugged it to my PC. The handset said the message USB debugging is connected. The

[android-developers] Contact suggestions

2010-03-24 Thread Fabian
If you're about to compose a sms at Android you will get suggestions if you begin to type in a receiver for the sms. Can anyone of you tell me how this works? I mean is there any way to have a look at the source code of how the android developers did that? I've been playing around with

[android-developers] EditText password attribute

2010-03-24 Thread eRGo
Hello there, i'm developing a password manager for android. I have one Activity that displays the details of an entry. by default all edittext elements of this view are disabled and the edittext that shows the actual password of this entry has the android:password=true attribute assigned in the

[android-developers] Databases and Activity life-cycle (OnCreate -- onResume)

2010-03-24 Thread Anders Widen
Hi! How to best handle databases during the Activity life-cyle? My example: 1. When I start the Activity I want to open the database so I create a new dbAdapter and open it. 2. onCreate calls populateFields and data is read from the database I just opened. The database remains opened because

[android-developers] Hi every one

2010-03-24 Thread hany
I am the new learner in android. so please send ever basic code and examples thanking you. -- 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

Re: [android-developers] Re: zoom for gallery

2010-03-24 Thread hanumanthu
REMOVE 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+unsubscr...@googlegroups.com For more

[android-developers] Android monkey tool script

2010-03-24 Thread zafar
Android Monkey tool can use user supplied script to run, but very few information are present in this regarding to writing android monkey script. one guy only copied the stuff from source code and apart from that no information is present. Can anyone tell abount the sysntax of android monkey

[android-developers] Service that can report my location all the time

2010-03-24 Thread Kateling
Hi, there I want to create a service that runs on Android which can collect all of my location information. Either write the information to a file or send to a server using 3G/wiki network. I was thinking about using a service that runs forever as a daemon. After reading Diamonds are forever,

[android-developers] ADP3? When?

2010-03-24 Thread cloudguy
I'm waiting to buy an android phone until I can get a developer phone that has as much power as a Motorolo Droid or a Nexus One. Spending any money on a two year old clunker isn't my idea of good financial sense. Any idea when we will get an up-to-date dev phone? Jamie -- You received this

[android-developers] I cant close emulator.

2010-03-24 Thread Jane
Hi. I cant close my android emulator. I had click to X btn on emulator but that didn't not work. In addition , i cant log off or system shutdown after trying close emulator. i try to kill process emulator.exe but failed. I am using Eclipse 3.5 with android-sdk_r05-windows.zip on XP-32 bit. Hope

[android-developers] SMS

2010-03-24 Thread irfan
Hello all I am trying to make an application in android that can intercept an incomming sms. I then want to parse it and then trigger certain events according to certail header present in that sms or text message. Can any one help me regarding this as i am a very beginner in android development.

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

2010-03-24 Thread Willem
Nothing received yet in the EU (The Netherlands) On Mar 24, 9:04 am, ratson materem...@gmail.com wrote: Nord America seems to be fine. what about EU? On márc. 24, 06:09, Alexey alex...@gmail.com wrote: Received the Nexus 1 in BC, Canada. Too bad it's not ATT version to use with

[android-developers] Modifying audio in real time

2010-03-24 Thread Simone
Hi everyone, I'll try to explain briefly what I need to do. I need to load an audio resource and play it, but I also need to be able to modify some parameters (like the volume, or the playback rate) while the audio is being played. For example, I might want to play a 10 seconds audio stream, and

[android-developers] Simple mapController.animateTo(point) problem.

2010-03-24 Thread hwrdprkns
Hello, I am getting a force close whenever I try to run this application. I am trying to do something very simple by just animating the map to show a set of coordinate that I am giving it. This is my pastebin: http://pastebin.com/embed_js.php?i=8Qjsurck Any help on this matter would be greatly

[android-developers] Running Flash 10 on Android 2.1

2010-03-24 Thread Saurabh
I have seen various articles and videos of Adobe running Flash 10.1 on Droid/HTC Hero and Nexus 1. However, these are all ARM processors with 500MHz or higher. We are putting Android 2.1 on another type of device which doesnt have an ARM processor. Will I be able to run Flash 10.1(browser based)

[android-developers] Problems calling GeoCoder.

2010-03-24 Thread Sergio Visinoni
Hi all, I'm having a problem calling GeoCoder.getFromLocation(); I have a LocationListener calling an updateLocation() method in my class, which in turns calls GeoCoder.getFromLocation() with the current location. private void updateLocation(Location currentLocation) { if

[android-developers] How to get the Calendar application on emulator?

2010-03-24 Thread haritha polose
Hi, I am using Calendar code from mydroid.To get the application on emulator i followed the steps below. 1I make mydroid using make command. 2Using make sdk command, i got the sdk. 3Run the emulator by setting

[android-developers] Re: webkit onGestureXXX

2010-03-24 Thread Atlantix
I would like to know too, and also I would like to know if Android browser supports multitouch DOM events like Safari for iPhone. Please, let me know! Thanks. Flavio On 19 Mar, 17:38, mike enervat...@gmail.com wrote: Is there any plans to support the onGestureXXX set of events like the

[android-developers] Re: Sending custom headers in WebView

2010-03-24 Thread alien9
what recourse is there for developers using WebViews that run into Length Required messages from IIS, after a form is POSTed? I just want to set Content-Length :) On Mar 13, 9:20 am, Mark Murphy mmur...@commonsware.com wrote: kelvin wrote: I've found some information about this topic, but I

[android-developers] Contact API new contact is invisible

2010-03-24 Thread sebastian.kroll.cont...@googlemail.com
I simply want create a new contact on a android 2.0 device. The created contact must appear in the native contacts application of the device. I tried to add a new contact using the ContactManager sample from the android sdk:

[android-developers] Re: adb push hosts file into /system/etc/ - No space left on device error

2010-03-24 Thread Antonin Hildebrand
I have exactly the same problem: ~/android-sdk/platforms/android-7 ➔ adb remount remount succeeded ~/android-sdk/platforms/android-7 ➔ adb push /etc/hosts /system/etc/ hosts failed to copy '/etc/hosts' to '/system/etc/hosts': No space left on device The reason why I need to use my local hosts

[android-developers] Internet full of helping Hands

2010-03-24 Thread Vikas
Hello Friends, I am a regular user of the internet and using it since my childhood. As I got more experienced internet user I disconved that internet is full of possibilities and it is endless. The thing that trying to point out is that we all use internet and buy goods and services online, but

[android-developers] Bluetooth headset muted when playing FM Radio

2010-03-24 Thread jgui
The Bluetooth headset is muted by the FM Radio app, when connecting wired headphones to use them as antenna -otherwise it won't play at all. Would it be possible to redirect this audio signal to the Bluetooth headset? -- You received this message because you are subscribed to the Google Groups

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

2010-03-24 Thread BM
Thank you all for the info... being more impatient than most, here is what I did: I called Fedex and said I was expecting a package today but didn't have the tracking number. They asked for my street address and name, then told me there was a package expected to arrive on Friday. I asked if it

  1   2   3   >