[android-porting] Re: How the video display size making use of resize and rotation is set under Android

2009-06-05 Thread Harishkumar V
Hi, in movieview.xml, VideoView android:id=@+id/surface_view android:layout_width=fill_parent - can be replaced to any desried width android:layout_height=fill_parent- can be replaced to any desired height android:layout_centerInParent=true

[android-porting] Re: Networking without wireless

2009-06-05 Thread Androidphan
Anyone? On Jun 2, 1:30 pm, Androidphan niels.kee...@tass.nl wrote: Most application return an error when trying to connect the internet. I have a wired connection and internet works in the browser after giving a message that the network connection is down. The emulator simulates a 3G

[android-porting] Re: Android 1.5 on kernel 2.6.29

2009-06-05 Thread gp
Ok thank. Is possible to know wich is the best way to do that? Not only a Yes? Best regards On Jun 4, 7:36 pm, Matthew Porter mpor...@embeddedalley.com wrote: On Jun 4, 2009, at 6:45 AM, Ajay wrote: Hi, Has anybody tried to run Android on kernel 2.6.29? Yes Can the android kernel

[android-porting] Re: How the video display size making use of resize and rotation is set under Android

2009-06-05 Thread sreedhar b
Hi Harish, I think the video view widget am using is by default available inside android. It uses the Camera.apk internally having the movie view. And thanks for the inputs on my query. As said in my previous mail, for a VGA(640X480) display panel the resize is not happening for the cases 2 and

[android-porting] Re: Android 1.5 on kernel 2.6.29

2009-06-05 Thread Yi Sun
For 2.6.29, you only need to enable the android drivers from staging entry in the menuconfig. And then you should be ready to go. ABout the patch, what patch are you talking about? On Fri, 2009-06-05 at 07:09 -0700, gp wrote: Ok thank. Is possible to know wich is the best way to do that? Not

[android-porting] GSM Modem

2009-06-05 Thread fgilani
Is it possible to send AT commands directly to the GSM modem on the HTC dream or any other android handset? Doesn't seem like there's any way to do that other than to write a radio specific code. Thanks. --~--~-~--~~~---~--~~ unsubscribe:

[android-porting] Reference to port Linux programs to Android x86

2009-06-05 Thread Jorge Fernandez
I am new to Android porting but I think you may read this complete guide to make a Linux From Scratch and I think that it may also help Android x86 to be ported easier. http://www.linuxfromscratch.org/lfs/read.html Anyone who has ever built a Linux system from scratch understands how the kernel

[android-porting] Re: How the video display size making use of resize and rotation is set under Android

2009-06-05 Thread Harishkumar V
Hi, It should, how it works - the calculation is like this, for example, in ur case display width (dw) - 640 display height (dh) - 480 video width (vw) - 320 video height (vh) - 240 these are done in onmeasure function in videoview widget case 1: vw*dh vh*dw then, dh=(vh*dw)/vw; dw= no

[android-porting] error: 'mSharedFd' was not declared in this scope

2009-06-05 Thread Alan Cramer
I am trying to build Android and keep hitting the same roadblock. I assume nobody else is getting this problem, otherwise this would appear to have been discussed. I am trying to build Android for my eeePC 900, and when I build, I am getting the following... target thumb C++: libandroidpv =

[android-porting] Re: GSM Modem

2009-06-05 Thread Sean McNeil
IMHO this would be a really bad feature and a severe security hole. Android should never allow this. This is one reason I've always opposed a separate multiplexer daemon as it would allow more than just the RIL to talk directly to the modem. fgilani wrote: Is it possible to send AT commands