[android-beginners] how to open a created webpage and place a file in a http server ?

2009-03-24 Thread srini amul
Hi,   I would like to open a my own created webpage in emulator. Lets say I have to browse a url like http://xyz.3gp . To browse a mentioned link, i need to place a xyz.3gp file in a http server, so that i can address the above link.   So I would like to know, How can i place my test content 3gp

[android-beginners] display frame buffer

2009-01-12 Thread Srini amul
Hi, I have a RGB565 frame buffer. I need to display it on a screen. I am not finding a suitable API to pass a frame buffer [unsigned char*] to display on a screen. How can i display my own frame buffer on a screen ? --~--~-~--~~~---~--~~ You received this message

[android-beginners] Calling media frame work library function in C/C++

2009-01-12 Thread Srini amul
Hi, My sample app is in C/C++. I need to use media frame work library to play a video file. Can i call Mediaplayer() media framework library function in my C/C++ code ? Thanks Sriniamul --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[android-beginners] display frame buffer

2009-01-12 Thread srini amul
Hi,   I have a RGB565 frame buffer. I need to display it on a screen. I am not finding a suitable API to pass a frame buffer [unsigned char*] to display on a screen.   How can i display my own frame buffer on a screen ? Thanks & Regards, P.Sriniamul Connect with friends all over the worl

[android-beginners] basic doubts on andriod

2009-01-12 Thread srini amul
Hi,   I am new to andriod. I have some basic doubts, please clarify it.   a) I have a RGB565 frame buffer. I need to display it on a screen. I am not finding a suitable API to pass a frame buffer [unsigned char*] to display on a screen.  How can i display my own frame buffer on a screen ? I

[android-beginners] Calling media framework API from C/C++

2009-01-12 Thread srini amul
Hi,   I am new to Andriod. I have a basic doubts, please clarify it.   I have my own library file say [sample.so file] and it will be in library layer and its in C/C++ code. And I need to load this library in a application say Browser app.   a) How browser app can load my library ? Is it dl_open

[android-beginners] Re: Calling media frame work library function in C/C++

2009-01-13 Thread srini amul
Hi ,   My application is in Java. But my library is in C/C++ and its exposed JNI function. If my library wants to use media frame work java class function then can it call directly by mplayer = new MediaPlayer(); .. so on, Thanks & Regards, P.Sriniamul --- On Tue, 13/1/09, Genesio wrote: From

[android-beginners] Problem in playing a mp4 file:

2009-01-16 Thread srini amul
Below is a step which i tried to play mp4 file. But nothing happens. Could someone please help me out ?   Steps which I tried: *** a) I added a SurfaceView element in main.xml b) I uploaded a video.mp4 file in res/raw directory Below is my main.xml: ---

[android-beginners] Problem in playing a mp4 file:

2009-01-16 Thread srini amul
Below is a step which i tried to play mp4 file. But nothing happens. Could someone please help me out ?   Steps which I tried: *** a) I added a SurfaceView element in main.xml b) I uploaded a video.mp4 file in res/raw directory Below is my main.xml: ---

[android-beginners] Problem in playing a mp4 file:

2009-01-16 Thread srini amul
Below is a step which i tried to play mp4 file. But nothing happens. Could someone please help me out ?   Steps which I tried: *** a) I added a SurfaceView element in main.xml b) I uploaded a video.mp4 file in res/raw directory Below is my main.xml: ---

[android-beginners] Problem in playing a mp4 file:

2009-01-16 Thread srini amul
Below is a step which i tried to play mp4 file. But nothing happens. Could someone please help me out ?   Steps which I tried: *** a) I added a SurfaceView element in main.xml b) I uploaded a video.mp4 file in res/raw directory Below is my main.xml: ---

[android-beginners] Problem in playing a video file

2009-01-16 Thread srini amul
Below is a step which i tried to play a mp4 file. But nothing happens. Could someone please help me out ?   Steps which I tried: *** a) I added a SurfaceView element in main.xml b) I uploaded a video.mp4 file in res/raw directory Below is my main.xml:

[android-beginners] Running the Emulator in debug mode

2009-01-16 Thread srini amul
Hi,   I want to run the emulator in a debug mode.   I setup a line breakpoint in my application java class onCreate() function. Then i chosed  a "Debug" option.   But emulator is not getting stopped in my breakpoint.   Any idea, how will i run the emulator in a debug mode ? Thanks & Regards, P.S

[android-beginners] Error in using push command

2009-01-17 Thread srini amul
Hi,   I am trying to copy the file to the emulator. I used a below command   adb push "video.mp4" /sdcard/video.mp4   But its giving a below error   failed to copy video.mp4 to /sdcard/video.mp4: Read only file system   How do i solve this error ? Thanks & Regards, P.Sriniamul Add more fr

[android-beginners] need to know few apis

2009-01-20 Thread srini amul
a) Is there any utility function in andrioid, to convert from ASCII String to UTF 16 string (or) Vise versa like STRTOWSTR() / WSTRTOSTR() ? b) How do i update my surface holder size ? What is the API to do this ? c) How do  i get a frame which is been displayed on a screen ? What is the API to

[android-beginners] How to get a telephony manager service in my native library ?

2009-02-04 Thread srini amul
Hi,   I would like to use Telephony manager service in my native library. Basically i want a Device IMEI. Currently Telephony manager provides the functionality to get a IMEI number of a device.   So How do i get a telephony manager service in my native library [which is in C++] ? Thanks & Rega

[android-beginners] basic doubts on andriod

2009-02-05 Thread srini amul
Hi,   I am a Phone/OEM developer, working on a phone, not an application developer.   I have few basic questions, could you please respond to my question   a) Can i call media framework native API in my native library which is in C++ ?     Like in my sample.cpp file     can i have a below pi