[android-developers] tracview: "Qemu trace files not supported yet."

2008-04-20 Thread elDoudou
Just to indicate that on Mac Os, when using the "Debug" class in order to audit an application, when I want to analyze the logs by using the traceview command, I get a "Qemu trace files not supported yet." error message. Is it due to the fact that I'm on MacOS? Is the traceview tool not totally i

[android-developers] Power VR?

2008-04-20 Thread tberthel
Anyone know of a good Android Phone release date and/or spec list? More importantly what phones will have a GPU? Of the GPU phones will any have anything other than Power VR? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Protecting data and application from illegal use

2008-04-20 Thread CAT
On Apr 19, 10:09 am, Jackkk <[EMAIL PROTECTED]> wrote: > Hi! > > I was wondering about some real world issues about commercial > applications: > > - Will there be a possibility for encrypted APKs as some of the > information included with the app (files, media, images, databases) > can be copyri

[android-developers] Streaming video with m5 SDK

2008-04-20 Thread Fikre
I'm trying to play videos from a given uri on the m5 SDK. I found some code that plays "Progressive Streamable mp4" files. But the code wont play any other video files. Can anyone point me to some good information on how to play video files on the new SDK? or some information on how to convert a v

[android-developers] Re: Emulator crashing constantly on Windows Vista

2008-04-20 Thread Beginner
In my email above, I posted the server trace collected though the procedure you described: [This is the entire trace from the console] "failed to read packet from transport socket on fd 103 failed to read packet from transport socket on fd 108 This application has requested the Runtime to termi

[android-developers] Hardware considerations for application with media

2008-04-20 Thread forester404
HI all. I have no experience in programming phones, but I have an idea for an application for the Android platform, and I would like to start implementing it with existing SDK and emulator. My application would probably need to contain a few thousands images, about the same number of very short a

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

2008-04-20 Thread Rui Martins
Just guessing here, but several stuff to verify. - you probably should set the Filter flag, after adding a MaskFilter, and not before. (just to be sure, although not state anywhere). - Are your shure that your originalBitmap has a Alpha channel ? Verify! - If there is an Alpha channel on ori

[android-developers] Re: Emulator crashing constantly on Windows Vista

2008-04-20 Thread Beginner
Okay, so it looks like the crashes stop once I turn off User Account Control. On Apr 20, 1:36 pm, Beginner <[EMAIL PROTECTED]> wrote: > In my email above, I posted the server trace collected though the > procedure you described: > > [This is the entire trace from the console] > > "failed to read

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

2008-04-20 Thread My
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 confuse. can any body help me about this? any help will full

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

2008-04-20 Thread Nick Jenkin
Hi If you are unable to get the native blur apis working you can use a simple blur convolution/kernel matrix like: 0 0 0 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 1 0 0 0 0 0 0 (This is much like the convolution matrix you get with a gaussian blur so I assume you have some code thats able to apply these to

[android-developers] RemoteService not found

2008-04-20 Thread WildLuka
hi, I'm getting this error: WARN/ActivityManager(515): Unable to start service Intent { comp={test.test/test.test.IRemoteInterface} }: not found can someone tell what I've done wrong ? thanks in advance luka --~--~-~--~~~---~--~~ You received this message becau

[android-developers] SQL servers tools and techniques

2008-04-20 Thread gokul
Want to have more details on SQL server tools and techniques http://www.sqlserversoftware.blogspot.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to a

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

2008-04-20 Thread André Oriani
Hi all, I am working on a Instant Messaging Application. Okay, The applications starts with a login screen that asks for username and password. When login key is pressed I start a subactivity to show the contact list. I see 2 potential problems here; 1)When user leaves the application, it is

[android-developers] Re: set an OnClickListener for each button in a ListView's row

2008-04-20 Thread xingye
see http://code.google.com/p/sharepath ChooseBuddy.java. the multi- selected list is seem to yours. On 4月18日, 下午11时13分, Pzikit Bloo <[EMAIL PROTECTED]> wrote: > Hi guys, > > I'm trying to create a ListView, with a TextView and two ImageButton > per row. The problem comes when I try to add an OnCl

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

2008-04-20 Thread Phone Nut
Hi All, I have used probably every imaginable operating system on mobiles over the last 7 years. I typically change phones every 3 months. I am also business executive that uses smart phones to review over 500 emails daily, on average. I am writing this post as I am really looking forward to A

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

2008-04-20 Thread hackbod
The typical way for you to do this is to have the login screen check to see if it needs to login and, if not, call startActivity() immediately to display the "real" main screen of the app. In both the login and no login cases, call finish() immediately after startActivity() so the user can't navi

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

2008-04-20 Thread Manmath
Hi André, The answers are as follows : Ans 1: Use Prefs file to store a boolean value for user logged in status. You can put the following condition on the onCreate(). If(user logged in ) then show list. else show login screen. Ans 2: I am agreed with hackbod. You need to finish the

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

2008-04-20 Thread Wei Yongqiang
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 menu, which I can place it anywhere and also can customize the width of the menu. Anyone can hel