[android-developers] Install Application from SD Card, open relaunches Application

2012-11-22 Thread B.Arunkumar
is the same problem we face when we try to load our debug apk to the SD Card and install. Why is this problem occuring and what should be done to solve the problem? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: DefaultHttpClient HttpPost InputStream problem

2012-11-16 Thread B.Arunkumar
Hi, We are getting a "MalformedChunkException: CRLF expected at end of chunk" Exception at the place where is.read is done? Any suggestions? Thank you, B.Arunkumar On Friday, November 16, 2012 3:29:43 PM UTC+5:30, B.Arunkumar wrote: > > Hi, > > I am using the Defaul

[android-developers] DefaultHttpClient HttpPost InputStream problem

2012-11-16 Thread B.Arunkumar
Hi, I am using the DefaultHttpClient to post an xml using HTTPPost and the xml response InputStream write to a file on SD Card as per the code: HttpConnectionParams.setConnectionTimeout(my_httpParams,3); HttpConnectionParams.setSoTimeout(my_httpParams, 3); DefaultHttpClient Client = n

[android-developers] Re: Prevent Installation of armv7 neon compiled app on Non Neon Devices

2012-08-28 Thread B.Arunkumar
, B.Arunkumar. On Aug 28, 12:27 pm, Doug wrote: > No.  Neon instructions are not part of the ABI specification, which is what > the device uses to determine which .so to load.  You have to detect that at > runtime OR you have to make the user make an informed decision about which > share

[android-developers] Export Project with Signed Key (Release Mode)

2012-08-24 Thread B.Arunkumar
Hi, I am trying to export Android project in release mode with signed key for upload to Google PlayStore through Export Wizard. However I am getting an error "Conversion to Dalvik Format failed with Error 1". Could soebody let me know what is the problem? Thank you, B.Arunkuma

[android-developers] Re: Prevent Installation of armv7 neon compiled app on Non Neon Devices

2012-08-22 Thread B.Arunkumar
Hi, What about upload to the Google PlayStore? If we compile the app for armv7 neon support, is it that Google PlayStore will automatically restrict the app from being seen on non-neon devices? Thank you, B.Arunkumar On Aug 22, 1:54 pm, "B.Arunkumar" wrote: > Hi, > >

[android-developers] Prevent Installation of armv7 neon compiled app on Non Neon Devices

2012-08-22 Thread B.Arunkumar
r run mode, the application installs on the device but when opened. it crashes with an ExceptionInInitializer error. Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Re: Media Scanning Completed Toast message appears only sometimes

2012-08-07 Thread B.Arunkumar
rted. gallery is closed to scanning media files on SDcard". Is there any way to check if the gallery is closed and prevent the gallery refresh that I call in code? I am using Samsung Galaxy SII to check. Thank you, B.Arunkumar On Aug 7, 4:27 pm, "B.Arunkumar" wrote: > Hi, > &g

[android-developers] Media Scanning Completed Toast message appears only sometimes

2012-08-07 Thread B.Arunkumar
; only sometimes and sometimes it does not appear. Could somebody explain why we get this toast sometimes and sometimes we don't get it? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this grou

[android-developers] Re: Cancelling multiple alert dialogs

2012-07-18 Thread B.Arunkumar
ack of the number of boxes that are showing up and how to close the other boxes when ok is pressed for one? Thank you, B.Arunkumar On Jul 18, 12:47 pm, Terry wrote: > I guess that this is a problem that most of us have had - and many still > have without knowing it - because it normally

[android-developers] Cancelling multiple alert dialogs

2012-07-17 Thread B.Arunkumar
og2? Thank you, B.Arunkumar -- 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...@googlegr

[android-developers] Re: Handling Bitmap Out of Memory Error

2012-07-17 Thread B.Arunkumar
Hi, We are using 640*480 resolution video frames with frame rate of 10 frames/sec. Another question related to bitmaps is do we really need to recycle bitmaps or can we assume that the Garbage Collector would take care of disposing bitmaps? Thank you, B.Arunkumar On Jul 17, 6:49 am

[android-developers] Handling Bitmap Out of Memory Error

2012-07-16 Thread B.Arunkumar
on ex) { android.util.Log.e("Bitmap", "Error"); } Thank you, B.Arunkumar -- 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 unsubsc

[android-developers] Re: Process 8769 terminated by signal (7)

2012-07-12 Thread B.Arunkumar
:= cpufeatures LOCAL_LDLIBS:= -llog -L$(FFMPEG) -lswresample -lavformat - lavcodec -lswscale -lavutil -Werror include $(BUILD_SHARED_LIBRARY) $(call import-module,cpufeatures) This requires any changes? Thank you, B.Arunkumar. On Jul 12, 10:29 am, "B.Arunkumar" wrote: > Hi,

[android-developers] Re: Process 8769 terminated by signal (7)

2012-07-11 Thread B.Arunkumar
to the forum. Thank you, B.Arunkumar On Jul 11, 11:12 pm, Justin Buser wrote: > You'd really have to provide some relevant information, telling us the > sigspec and what your apps pid happened to be when it died is not really > enough to go on. > > > > > > >

[android-developers] SeekBar thumb colour problem when added through a handler

2012-07-10 Thread B.Arunkumar
Hi, I have added a (default) seekbar dynamically to a linear layout in a handler class. The white colour of the thumb is not showing up. Could somebody let me know what is the problem? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Handler removecallback problem

2012-07-03 Thread B.Arunkumar
, B.Arunkumar On Jul 3, 4:47 pm, skink wrote: > B.Arunkumar wrote: > > Hi, > > >      Thank you for your reply. This is roughly the framework of code I > > am using: > > > Main Thread :- > > > Handler handler = new Handler(); > > handler.postDe

[android-developers] Re: Handler removecallback problem

2012-07-03 Thread B.Arunkumar
executes after handler.removeCallbacks(runnable) is executed in the other thread. Thank you, B.Arunkumar On Jul 3, 3:49 pm, skink wrote: > B.Arunkumar wrote: > > Hi, > > >      Sometimes, handler.removeCallbacks(runnable) does not remove the > > callback after handl

[android-developers] Handler removecallback problem

2012-07-03 Thread B.Arunkumar
Hi, Sometimes, handler.removeCallbacks(runnable) does not remove the callback after handler.postDelayed(runnables,millisecs) is executed and the handler.postDelayed again gets executed after some time. Can somebody let me know how to solve this problem? Thank you, B.Arunkumar -- You

[android-developers] Process 8769 terminated by signal (7)

2012-04-20 Thread B.Arunkumar
pp crashes? Thank you, B.Arunkumar -- 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...@

[android-developers] Re: How to read a text file in Android

2012-04-10 Thread B.Arunkumar
Hi, Please take a look at this link and see if it is useful to you: http://stackoverflow.com/questions/2079766/how-to-create-write-file-in-the-root-of-the-android-device Thank you, B.Arunkumar On Apr 10, 4:57 pm, Ambika Kulkarni wrote: > Hello Folks, > > I am a new bee to Android.

[android-developers] Re: Taking Screen Shot without Rooting

2012-04-10 Thread B.Arunkumar
Hi, I am not sure if this is what you are looking for but this link might be useful to you: http://www.anddev.org/other-coding-problems-f5/how-to-capture-screen-with-coding-t3755-15.html Thank you, B.Arunkumar On Apr 10, 5:46 pm, lbendlin wrote: > tell your teacher that this is a usel

[android-developers] Notifications in Notification Manager without icon in status bar

2012-03-27 Thread B.Arunkumar
, B.Arunkumar -- 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.co

[android-developers] Exception in Logcat

2012-03-26 Thread B.Arunkumar
t com.android.server.WindowManagerService $WindowState$DeathRecipient.binderDied(WindowManagerService.java:7398) W/WindowManager( 3102): at android.os.BinderProxy.sendDeathNotice(Binder.java:381) W/WindowManager( 3102): at dalvik.system.NativeStart.run(Native Method) I/WindowManager( 3102): WIN DE

[android-developers] Re: Pinch and Zoom of Webview

2012-03-19 Thread B.Arunkumar
hange the framework much. I would like to check if it would be somehow possible to use WebView instead of ImageView to render the bitmap. Thank you, B.Arunkumar On Mar 16, 7:18 pm, TreKing wrote: > On Fri, Mar 16, 2012 at 1:59 AM, B.Arunkumar > wrote: > > >    is it possible to someh

[android-developers] Pinch and Zoom of Webview

2012-03-16 Thread B.Arunkumar
, B.Arunkumar -- 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 mo

[android-developers] Touchscreen sensivity

2012-03-09 Thread B.Arunkumar
Android mobiles? Thank you, B.Arunkumar -- 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-developer

[android-developers] Memory leak and GC

2012-03-02 Thread B.Arunkumar
Hi, I would like to post the same question I have done on android ndk googlegroups. Please see this link: http://groups.google.com/group/android-ndk/browse_frm/thread/7bfffc2591ecb49b Thank you, B.Arunkumar Hi, Thank you for your reply. The byte array we get is converted into a Bitmap in

[android-developers] Callback and context reference

2012-02-28 Thread B.Arunkumar
be the best way to store the context references for use in callbacks? Thank you, B.Arunkumar -- 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] Bitmap recycle

2012-02-23 Thread B.Arunkumar
)&&(bm.isRecycled()==false)) { bm.recycle(); } I have used bitmap recycle since I get OutofMemory error every now and then. However, when I use bitmap recycle , the app crashes with Viewroot.draw(boolean): Line Could somebody suggest what is to be done? Thank you, B.Arunkumar -- You

[android-developers] Re: adb logclear?

2012-02-20 Thread B.Arunkumar
Hi, It is adb logcat -c. This link would also be useful for you: https://sites.google.com/site/androidhowto/how-to-1/save-logcat-to-a-text-file Thank you, B.Arunkumar On Feb 21, 9:33 am, bob wrote: > What is the adb command to tell a device to clear its log? -- You received this mess

[android-developers] How to save Logcat information from a device which is not rooted

2012-01-17 Thread B.Arunkumar
Hi, Could somebody let me know how to save the debugging information in my application to a file in the SDCard? Please assume that the device is not rooted to a computer to check for debugging information in Logcat of Eclipse IDE. Thank you, B.Arunkumar -- You received this message because

[android-developers] Button clicking colour change problem

2012-01-12 Thread B.Arunkumar
colouring of the 2 buttons should appear sequentially because button clicking happens on the main thread, is it not? (Actually, I posted the same question on an earlier thread too but I have not been able to figure out why this is happening) Thank you, B.Arunkumar -- You received this message

[android-developers] Re: Prevent seekbar from moving on tapping

2012-01-10 Thread B.Arunkumar
seekbar.OnTouchListener() you can get the position of the current touch event as touching the thumb or progressdrawable. Thank you, B.Arunkumar On Jan 9, 12:46 pm, skink wrote: > On 9 Sty, 08:28, "B.Arunkumar" wrote: > > > Hi, > > >    How do you check thumb dr

[android-developers] Re: Prevent seekbar from moving on tapping

2012-01-08 Thread B.Arunkumar
? Thank you, B.Arunkumar On Jan 7, 6:01 pm, skink wrote: > you could for example check thumb drawable bounds (they are updated when a > thumb moves left/right) > > pskink -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Re: Prevent seekbar from moving on tapping

2012-01-07 Thread B.Arunkumar
ve me some pointers? Thank you, B.Arunkumar On Jan 7, 5:07 pm, skink wrote: > B.Arunkumar wrote: > > Hi, > > >    No. You must have noticed that the seekbar can be moved by either > > dragging the thumb or tapping anywhere on the progressdrawable. Now I > > want to dis

[android-developers] Re: Prevent seekbar from moving on tapping

2012-01-07 Thread B.Arunkumar
Hi, No. You must have noticed that the seekbar can be moved by either dragging the thumb or tapping anywhere on the progressdrawable. Now I want to disable the movement of the thumb when the progressdrawable is touched. How do I do it? Thank you, B.Arunkumar On Jan 7, 4:17 pm, skink wrote

[android-developers] Prevent seekbar from moving on tapping

2012-01-07 Thread B.Arunkumar
Hi, Is it possible to have the seekbar move only when the thumb is moved. Right now the seekbar moves even on finger touch in the progressdrawable. How do we disable the movement of the seekbar on finger touch of the progressdrawable? Thank you, B.Arunkumar -- You received this message because

[android-developers] Button lick problem

2011-12-26 Thread B.Arunkumar
hat the color of both the buttons change simultaneously? As per this link: http://android-developers.blogspot.com/2009/05/painless-threading.html the button click event happens on the same main UI thread. In that sense, both the buttons should not have changed their colors simultaneously. Thank

[android-developers] Problem on button click

2011-12-20 Thread B.Arunkumar
me any pointers to atleast stop the listview clicklistener from firing? Thank you, B.Arunkumar -- 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: Is it possible to use the UI controls while the ProgressDialog is on?

2011-12-20 Thread B.Arunkumar
Hi, This can be done. What I want is a way to use the same button for showing the progressdialog and later cancelling it. Probably I should go in for some animated imagview instead of progressdialog for my requirement, I guess. Thank you, B.Arunkumar On Dec 20, 3:58 pm, srihari babu wrote

[android-developers] Is it possible to use the UI controls while the ProgressDialog is on?

2011-12-20 Thread B.Arunkumar
Hi, I have a progress dialog which shows up on a Button Click. Now I want to change same the button as a cancel button to dismiss the ProgressDialog. Can it be done? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Devel

[android-developers] Detect if the device is a tablet or phone

2011-12-06 Thread B.Arunkumar
2368/tablet-or-phone-android I am told that checking for SDK version as is given in the second link is not right since some tablets support Gingerbread. Is the screen size>=6 as is given in the first link the correct way to check if the device is a phone or tablet? Thank you, B.Arunkumar

[android-developers] Re: Is it possible to have a static view common to various activities in the application?

2011-12-02 Thread B.Arunkumar
); relativelayoutevent.setLayoutParams(tempparams); framelayout1.addView(relativelayoutevent); And this is the exception it throws: android.view.InflateException: can be used only with a valid ViewGroup root and attachToRoot=true Thank you, B.Arunkumar On Dec 2, 3:09 pm, skink wrote

[android-developers] Re: Is it possible to have a static view common to various activities in the application?

2011-12-02 Thread B.Arunkumar
ds to be done? Thank you, B.Arunkumar On Dec 2, 11:00 am, TreKing wrote: > On Thu, Dec 1, 2011 at 11:48 PM, B.Arunkumar > wrote: > > >  I have a layout defined programmatically in activity class. How do > > I include the layout header (defined as xml) in the layout defined > &

[android-developers] Re: Is it possible to have a static view common to various activities in the application?

2011-12-01 Thread B.Arunkumar
Hi, I have a layout defined programmatically in activity class. How do I include the layout header (defined as xml) in the layout defined programmatically (not as xml) in the activity class. Thank you, B.Arunkumar On Nov 29, 12:46 pm, siva prakash wrote: > Hi, >    You can do this

[android-developers] Re: Is it possible to add rows to the listview from the top?

2011-12-01 Thread B.Arunkumar
Hi, Actually I have been able to solve the requirement by using the listview onHierarchychangedListner. You iwll have to manually change the background of the rows in the onHierarchychangedListner after the row is added to the listview. Thank you, B.Arunkumar On Nov 30, 2:02 pm, skink wrote

[android-developers] Is it possible to add rows to the listview from the top?

2011-11-30 Thread B.Arunkumar
with this requirement? Thank you, B.Arunkumar -- 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-developer

[android-developers] Re: Is it possible to have a static view common to various activities in the application?

2011-11-28 Thread B.Arunkumar
ty B should be also reflected in Activity A when I call finish() and come back to Activity A? How can that be done? Thank you, B.Arunkumar On Nov 28, 6:32 pm, Johan Rydenstam wrote: > It's possible. > > Create a Layout you would like to have in A,B and C. > > Then use

[android-developers] Is it possible to have a static view common to various activities in the application?

2011-11-28 Thread B.Arunkumar
want to define the view separately in all the 3 layout xml. How do I do it? Thank you, B.Arunkumar -- 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 unsubs

[android-developers] ScrollView crashing on Pinch and Zoom

2011-11-22 Thread B.Arunkumar
m every now and then with ArrayIndexOutOfBounds exception and the error doesn't get caught with the try catch in OnTouch. What could be the problem and how do we solve this problem? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] ImageView with ScaleType.FIT_XY programmatically

2011-11-15 Thread B.Arunkumar
, B.Arunkumar -- 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 mo

[android-developers] NDK Sample program: Hello-Neon

2011-10-30 Thread B.Arunkumar
mpile the app with Neon support? Thank you, B.Arunkumar -- 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 and

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-10-19 Thread B.Arunkumar
initialized but we are facing with this command: int res = avcodec_decode_video2(codecCtx, srcFrame, &frameFinished, &packet); I just would like to check if somebody has tried this approach for hardware decoding and has had success doing so. Thank you, B.Arunkumar On Sep 16, 7:52 pm, Jon

[android-developers] Is it possible to zoom in/out of MediaPlayer?

2011-10-10 Thread B.Arunkumar
Hi, We are playing a video using mediaplayer on SurfaceView with a code similar to this link: http://davanum.wordpress.com/2007/12/29/android-videomusic-player-sample-from-local-disk-as-well-as-remote-urls/ Is it possible to zoom in/out of the mediaplayer while it is playing the video? --

[android-developers] Why is Asynchronous call with Selector taking a lot of CPU usage?

2011-10-07 Thread B.Arunkumar
getting the image frames (using the command adb shell top -m 10). Is there some problem with the code given in this link? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Changing layout according to resolution of devices

2011-10-04 Thread B.Arunkumar
resolution parameters in android:layout_marginTop for instance in the xml? Thank you, B.Arunkumar -- 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: how to parse xml from sdcard...

2011-09-29 Thread B.Arunkumar
Hi Gopalakrishnan, This posting should help you: http://groups.google.com/group/android-developers/browse_thread/thread/87d7305179d75985 Thank you, B.Arunkumar On Sep 29, 2:45 pm, GopalaKrishnan D wrote: > i don't know how to parse xml... i saw many example but i can't

[android-developers] Re: Progress Dialog box

2011-09-29 Thread B.Arunkumar
dialog should be dismissed. Thank you, B.Arunkumar On Sep 29, 3:07 pm, nageswara rao rajana wrote: > Hi, > >      I developed an application using soap which sends data to web > service.My request is this should be done in Progress spinner dialog box.I > searched and tested some code

[android-developers] Re: How to create an XML using SAX parser or any parser...

2011-09-28 Thread B.Arunkumar
Hi Gopalakrishnan, There are quite a few examples on the net you can find. Here is one such site: http://innovator.samsungmobile.com/cms/cnts/knowledge.detail.view.do?platformId=1&cntsId=9565 Thank you, B.Arunkumar On Sep 28, 11:44 am, GopalaKrishnan D wrote: > How to create an XM

[android-developers] Is android-dev IRC chat down?

2011-09-28 Thread B.Arunkumar
Hi, I have been trying to get onto the IRC chat android-dev for quite a few days now. I am not able to see any other members other than myself when I log in? Wonder what is the problem. Is the Android-dev IRC chat down? Thank you, B.arunkumar -- You received this message because you are

[android-developers] Re: H264 RTP Packetization

2011-09-27 Thread B.Arunkumar
H264 Encoding mode doesn't work for LG mobile? Thank you, B.Arunkumar On Sep 27, 11:58 am, NAVI NEW wrote: > Same issue i have already suffered someone not help so you try by yourself . > > On Mon, Sep 26, 2011 at 5:00 PM, B.Arunkumar > wrote: > > > Hi, > > >    I

[android-developers] H264 RTP Packetization

2011-09-26 Thread B.Arunkumar
you, B.Arunkumar -- 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.co

[android-developers] Re: Google Development phones

2011-09-21 Thread B.Arunkumar
better on this mobile? B.Arunkumar On Sep 22, 7:22 am, kypriakos wrote: > Good point - and I think the Nexus S is a bit overpriced. I had G1 > phones > for a while (both the development and the retail versions) running > 1.6 > but I have not been able to upgrade the retail ones t

[android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-21 Thread B.Arunkumar
Hi, You can download it from the Android Market and use it like a normal app. I don't think you can use rockplayer in your application, though. B.Arunkumar On Sep 16, 8:34 pm, TreKing wrote: > On Fri, Sep 16, 2011 at 2:16 AM, NAVI NEW wrote: > > i am asking how to use ,

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-09-15 Thread B.Arunkumar
, 4:19 am, Doug wrote: > On Sep 9, 1:30 am, "B.Arunkumar" wrote: > > >     Would somebody have some idea what exactly has RockPlayer done in > > the Hardware Decoding mode on a high level basis? I mean have they > > used the mediaplayer as it is or they have c

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-09-09 Thread B.Arunkumar
more RTSP Url formats) and things like that? Thank you, B.Arunkumar On Sep 4, 6:42 am, Felix long wrote: > Yes, You're right. The hardware decoding mode only means using inbuilt > MediaPlayer in these players. > > 2011/9/3 B.Arunkumar > > > > > Thank you for your

[android-developers] undefined reference to `android::Mutex::lock()'

2011-09-05 Thread B.Arunkumar
undefined reference to android::Mutex::lock. How should the Android.mk be written to overcome this compilation error? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-09-05 Thread B.Arunkumar
Hi, Thank you for your reply. Would you know if it is possible to use the inbuilt MediaPlayer with a self developed RTSP Stack and do the hardware decoding as it is? Thank you, B.Arunkumar On Sep 4, 6:42 am, Felix long wrote: > Yes, You're right. The hardware decoding mode only mea

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-09-02 Thread B.Arunkumar
programmatically through some means? Thank you, B.Arunkumar On Sep 2, 8:33 pm, Drezden wrote: > I believe they're using a customized build of FFMpeg that gets > accessed through the NDK.  FFMpeg has the ability to do a lot of > manipulation with video, audio, and images. > &g

[android-developers] How is RockPlayer doing hardware decoding?

2011-09-02 Thread B.Arunkumar
Hi, Would somebody be able to guide me on how RockPlayer/MoboPlayer does the hardware decoding of image frames? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: Using the Hardware decoder in LGP500 to render frames from camera

2011-08-29 Thread B.Arunkumar
, B.Arunkumar On Aug 26, 10:48 am, "B.Arunkumar" wrote: > Hi, > >     We have created our own RTSP stack which gets frames from camera > and gets decoded by FFMPEG and is rendered on ImageView. We areusing > an LG Optimus One device. The problem is that we are finding the

[android-developers] Using the Hardware decoder in LGP500 to render frames from camera

2011-08-25 Thread B.Arunkumar
OMXCodec::Create. Any suggestions on how to use the OMXCodec::Create with the RTSP Stack that we have created? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Re: BitmapFactory.DecodeBytearray

2011-08-17 Thread B.Arunkumar
env->setByteArrayRegion in native JNI code. Thank you, B.Arunkumar On Aug 16, 9:44 pm, musfiq wrote: > At first check if your byte array is not Null? > In addition, check if the captured image is of "JPEG,GIF,BMP or PNG > format? > /Musfiq > > On Aug 16, 11:03 am, "B

[android-developers] BitmapFactory.DecodeBytearray

2011-08-16 Thread B.Arunkumar
you, B.Arunkumar -- 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.co

[android-developers] GLSurfaceView and CPU Usage

2011-08-15 Thread B.Arunkumar
Hi all, Does GLSurfaceView always require a higher CPU Usage? Even the GLSurfaceView examples in API Demos show a high CPU Usage in the System monitor? Thank you, B.Arunkumar -- You received this message because you are subscribed to the Google Groups "Android Developers"