Re: [android-developers] Re: C++ Shared Library

2009-11-06 Thread sham shamcs
No need to use System.loadLibrary("totocpp"); System.loadLibrary("toto"); in java. Use this libraries in JNI.Can you send the Android.mk file. On Fri, Nov 6, 2009 at 11:54 AM, Nightwolf wrote: > Do you use exactly this code? > There should be two underscore symbols. > > #ifdef __c

Re: [android-developers] How to get all the log from phone reboot to IDLE

2009-11-03 Thread sham shamcs
use the command adb bugreport. On Tue, Nov 3, 2009 at 4:29 PM, wrote: > hi, > > I want to get all the log info from phone reboot to enter IDLE screen. > Using this reboot log info, I can debug some initialized prcocess. > > Thanks. > > > > > -- > You received this message because you are subscri

Re: [android-developers] Change ListView Color

2009-11-03 Thread sham shamcs
use canvas.drawColor(0xFFCC). On Tue, Nov 3, 2009 at 5:18 PM, Nemat wrote: > Hi > > I want to set the background color of ListView as white.I tried this: > > getListView().setBackgroundColor(color.white); > getListView().setCacheColorHint(color.transparent); > > But it doesnt change the

Re: [android-developers] text animation

2009-11-03 Thread sham shamcs
use animation class in Android. On Tue, Nov 3, 2009 at 2:49 PM, npak...@gmail.com wrote: > Hi all, > > Now i want to write an application to make a certain text to run > slowly from right side screen to left side screen and rotate to > repeat. > How can i do that? Please help me ! > Thanks all,

Re: [android-developers] How to add file .sqlite extension to our project

2009-11-03 Thread sham shamcs
I believe Android supports sqlite. There is a sqlite library in Android. I didnt use it.But normally we will add the file using adb command in Linux On Tue, Nov 3, 2009 at 6:25 PM, Archana wrote: > Hi.. > > Can anybody tell me whether android support file > with .sqlite extension? > > h

Re: [android-developers] [Android-developers] Display APIs in Android?

2009-11-03 Thread sham shamcs
you can use opengl also On Tue, Nov 3, 2009 at 5:54 PM, Latha Shivanna wrote: > Hii All > > Can anybody please tell me how can we display a buffer on screen? > > Currently I create a bitmap using Bitmap's CreateBitmap() and render > it on screen using canvas' drawBitmap(). > > Is there any other

Re: [android-developers] how to know if it the emulator or device

2009-11-03 Thread sham shamcs
In Linux ,use *adb devices* command to see which one is running. On Tue, Nov 3, 2009 at 6:59 PM, Zhihong GUO wrote: > Hi all, > > How to know if the application is running on emulator or on a real device? > I want to implement a function to detect wifi connection. If the application > is running