[android-developers] how to port touchscreen driver ?

2008-04-21 Thread trustchen
dear All: I have ported android to monahans(pxa310,marvell). but the touchscreen do not works. it works well in qtopia. another question: android boots very slowly(over 15 minutes).why? my kernel is 2.6.21 .kernel of android is m5-rc14. thanks! 2008-04-21 trustchen

[android-developers] Re: Streaming video with m5 SDK

2008-04-21 Thread barbapapaz
Hello you can find explanation on streaming here: http://groups.google.com/group/android-challenge/msg/114f11e31351840d You have an example source code on homepage of this group. I have test two converter to generate streamable content: Yamb with mp4box and quicktime pro Video generate with

[android-developers] Re: How can I get the current page's url of the web browser?

2008-04-21 Thread Dorothy
Thanks Megha, it's very nice of you. Hv a nice day :) --~--~-~--~~~---~--~~ 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

[android-developers] get key pressed actively

2008-04-21 Thread Gibson
Hi all, Is there a way to get key pressed actively? Currently we just need to override the method onKeyDown() method. Then Android OS will call onKeyDown() to tell our program that a key has been pressed. Is there a way to get the event if i don't override the onKeyDown() method? I want to

[android-developers] Re: How can I get the current page's url of the web browser?

2008-04-21 Thread Dorothy
Thanks Megha, that's very nice of you. Hv a nice day :) --~--~-~--~~~---~--~~ 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] How to insert image?

2008-04-21 Thread Pierre
Hi, all I want to design an interface which can input text and insert image. But I don't know how to insert an existed image. Which class should I use? Anyone can heip me? Thanks Pierre --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: How to insert image?

2008-04-21 Thread Pierre
Thank you, Gibson! I'll go to see the demo. On 4月21日, 上午11时09分, Gibson [EMAIL PROTECTED] wrote: Well. Maybe you can using ImageView i think. There are lots of demo in ApiDemo application. You can try it. Good luck. On Apr 21, 4:54 pm, Pierre [EMAIL PROTECTED] wrote: Hi, all I want to

[android-developers] Re: Load a class from another .apk file dynamic?

2008-04-21 Thread frankl
Hi chris.p, Have you resolved the issue of classloader.getResource? I met the same problem. Please let me know if any updates. that will be highly appreciated. Thanks Frank On Apr 13, 10:23 pm, chris.p [EMAIL PROTECTED] wrote: Hello everyone, I've already managed to load a single class from

[android-developers] Re: Has anybody been able to blur an image?

2008-04-21 Thread Zorg
It's monday and I'm not fully awake but if it's for display, just blit you bitmap twice with transparency the second blit being offseted by 1,1. you can do it once more fith a -1,1 offset. Maybe the result might suit your need. If the result is fine for you do the same kind of thing in a Bitmap/

[android-developers] Re: Load a class from another .apk file dynamic?

2008-04-21 Thread tu
I have a solution based on android.dalvik.DexFile. see my project http://code.google.com/p/rcpandroid/ 2008/4/21, frankl [EMAIL PROTECTED]: Hi chris.p, Have you resolved the issue of classloader.getResource? I met the same problem. Please let me know if any updates. that will be highly

[android-developers] Re: How to insert image?

2008-04-21 Thread Gibson
Well. Maybe you can using ImageView i think. There are lots of demo in ApiDemo application. You can try it. Good luck. On Apr 21, 4:54 pm, Pierre [EMAIL PROTECTED] wrote: Hi, all I want to design an interface which can input text and insert image. But I don't know how to insert an existed

[android-developers] Launching an activity from the web browser

2008-04-21 Thread David Given
I'm trying to have my activity launched when the user downloads a file of a specific MIME type from the web browser. I can't make this work; whenever I try, the web browser crashes before executing any of my code. I know a number of other people have had the same problem. Does anyone actually

[android-developers] problem when Modifying a xml element with dom

2008-04-21 Thread Dorothy
Hi all, I use dom to manipulate a xml file. It's ok with my getter when I search a element node's value. But my setter doesn't work. I'm sure that the node exists, and the xpath is ok. document.getElementsByTagName(tag).item(0).getFirstChild().setNodeValue(value); Well I did exactly the same

[android-developers] How do I create a MediaPlayer for a resource without using the resId?

2008-04-21 Thread vol
Hello everyone, This one has had me stumped for the last couple of days. I'm trying to create a MediaPlayer for a resource I have in res/raw, but I (!!!)DO NOT(!!!) want to create it by performing MediaPlayer.create(Context context, int resid), because I am experimenting with a few different

[android-developers] Will Google have an App Store?

2008-04-21 Thread GodsMoon
script type=text/javascript src=http://www.easy-poll.com/ usluga.sonda.38109/script div style=margin : 5px; background-color : #EE; width: 160px; border : 1px solid #CC; padding : 2px;a href=http://www.easy- poll.com title=easy-poll.com: free online pollseasy-poll.com: free online

[android-developers] [SOLVED] Re: Socket programming error while reading the socket

2008-04-21 Thread My
On Apr 21, 4:08 am, My [EMAIL PROTECTED] wrote: i already search for the same problem. some are helpful but i got this weird error. im making a tcp connection, have already successfully send my package but when i try to read from the socket, it throw exception Bad Socket. im really

[android-developers] task manager like application for android

2008-04-21 Thread Dan Danciu
Hi, I'm trying to see if an application like task manager, which would show running processes, system load, memory statistics can be created for android. I did some googling (+ searched the group) but didn't see anything helpful. So I am asking for a start point for: - see running processes

[android-developers] Re: How to create my own menu?

2008-04-21 Thread tanin
You can listen to keypressed. On Apr 21, 7:55 am, Wei Yongqiang [EMAIL PROTECTED] wrote: Hi all, I want to create my menu. When I press one button, this menu will appear on the screen's specific position. There are two types of menus, context menu and option menu. but I want one general

[android-developers] Re: updating proximity alerts

2008-04-21 Thread hackbod
It looks like a bug in the system, I'd suggest filing a bug report. :) On Apr 21, 1:14 pm, Michael Rueger [EMAIL PROTECTED] wrote: Bump (now that it is not the last minute submit panic anymore) anyone else seen this? Michael Danilo Gulamhussene wrote: Hi all, I have a problem with

[android-developers] Managed Cursor

2008-04-21 Thread Flik
What can cause an activity to stop managing a cursor or a managedCursor to not update onReststart or a managed cursor to not be notified of an update? I seem to having this problem when I change activities with startActivity or startSubActivity.

[android-developers] Re: get key pressed actively

2008-04-21 Thread Megha Joshi
Hi Gibson, This feature is not supported in the current SDK release. Thanks, Megha On Mon, Apr 21, 2008 at 1:23 AM, Gibson [EMAIL PROTECTED] wrote: Hi all, Is there a way to get key pressed actively? Currently we just need to override the method onKeyDown() method. Then Android OS will

[android-developers] Re: RemoteService not found

2008-04-21 Thread Megha Joshi
Hi Luka, Could you provide your relevant code here to help understand your issue and debug it further? Thanks, Megha On Sun, Apr 20, 2008 at 4:06 PM, WildLuka [EMAIL PROTECTED] wrote: hi, I'm getting this error: WARN/ActivityManager(515): Unable to start service Intent {

[android-developers] Re: Hardware considerations for application with media

2008-04-21 Thread Megha Joshi
Hi, It is recommended that media files(audio, video, pictures ) be stored on the sd card as they occupy more space. Thanks, Megha - Show quoted text - on the sdcard, On Sun, Apr 20, 2008 at 11:13 AM, forester404 [EMAIL PROTECTED] wrote: HI all. I have no experience in programming phones,

[android-developers] Bug in Snake and Lunar Landing with onKeyDown?

2008-04-21 Thread Steven A.
I posted this on another group, but it is more fitting to discuss this here. The below instructions work for either Snake or Lunar Landing (besides also effecting my own app). Please note that one must do the adb install to the emulator - the bug does not exist running it from eclipse. All

[android-developers] Re: Managed Cursor

2008-04-21 Thread Megha Joshi
Hi, If you call Activity's startManagingCursor() method, it should automatically take care of the cursor based on Activity's lifecycle. You can look at the NotePad tutorial for example. You could also provide your relevant code here to help us debug it further? Thanks, Megha On Mon, Apr 21,

[android-developers] Re: How to dinamically change the activity that is launched when selecting the app icon?

2008-04-21 Thread André Oriani
Manmath, Are you talking about using an Activity to 2 views? hackbod, But when user clicks on the app icon, the Activity for login screen will always be launched, am I right ? And did you mean ApiDemos/src/com/google/android/samples/app/ Forwarding.java ? Thanks, André On 21 abr, 02:14,

[android-developers] Re: How to dinamically change the activity that is launched when selecting the app icon?

2008-04-21 Thread Dan U.
I think the intention is that a login screen activity will always be launched. You should be able to just check to see if the user is logged in inside the onCreate of the login activity, then forward to the main activity (and I think make a finish() call in the login activity) if they are logged

[android-developers] Re: Android Email Team - Email Message Flags and Imap Idle

2008-04-21 Thread Phone Nut
The flags are standard (as far as I know) on most Imap servers now. They are definitely Server side. The client simply needs to be able to read the flag status (on or off) and also be able to change the flag status and pass the info back to the server. It is almost exactly the same as

[android-developers] Submission evaluation

2008-04-21 Thread Shamim
Is any body can tell , whether the evaluation has been started or not? i know many of you have submmited application which will interect with web and if tested then you will be able to understand that the testing of the software is started , can any body provide information that evaluation has

[android-developers] Re: task manager like application for android

2008-04-21 Thread Dan Danciu
I think this is exactly what I need. Thanks, Dan --~--~-~--~~~---~--~~ 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

[android-developers] Re: Custom mockup location providers - what's wrong with this?

2008-04-21 Thread Morris
Hi NTR , Did you solve the problem? I have the same problem. The LocationManagement only get gps provider in the folder of /data/misc/location, others won't. Thanks for your help in advanced On 4月11日, 下午11時39分, NTR [EMAIL PROTECTED] wrote: I'm trying to make my own mockup location providers,