[android-developers] Re: apk does not include classes.dex ,so apk can't be installed

2011-12-18 Thread xuxiake2...@gmail.com
i think Android.mk effect this -- 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] apk does not include classes.dex ,so apk can't be installed

2011-12-14 Thread xuxiake2...@gmail.com
I use mm to generate a apk file, android 4.0: no classes.dex in apk ( so the apk can't be installed, the log is: DexOptZ: zip archive '/data/app/com.xxx.xxx.apk' does not include classes.dex ) android2.3: there is a classes.dex in each apk file. -- You received this message because you are

[android-developers] GLSurfaceView show slow?

2011-06-22 Thread xuxiake2...@gmail.com
Dear all: I have a GLSurfaceView in a layout, it's invisible. After I chick a button, I call method GLSurfaceView.setVisibility(View.VISIBLE) to show it . But I it cost 3 seconds to init the GLSurfaceView. T'he time between button's onClick and GLSurfaceView.Renderer’s onSurfaceCreated

[android-developers] Re: getting exception on updating ui?

2011-06-04 Thread xuxiake2...@gmail.com
Only the original thread that created a view hierarchy can touch its views. Never update view in no ui thread! On 6月5日, 上午6时54分, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: Here is my playerview class.when the song first time played total song duration is set and seekbar runs,but

[android-developers] app can't run in full screen mode with avd 800*480 (skin wvga800)

2010-06-13 Thread xuxiake2...@gmail.com
I create a avd using android avd manager. The detail in config.ini as fellow: hw.lcd.density=160 skin.name=WVGA800 skin.path=platforms\android-4\skins\WVGA800 vm.heapSize=16 sdcard.path=C:\Documents and Settings\xuwan\.android\avd\1.6.avd \sdcard.img image.sysdir.1=platforms\android-4\images\

[android-developers] how to load a .so library in a apk?

2009-08-03 Thread xuxiake2...@gmail.com
I have a .so library ,which I had put in directory assets . But how can i load it ? I can't use System.loadLibrary or System.load because i can't get the path. thanks in advance for your answers. --~--~-~--~~~---~--~~ You received this message because you

[android-developers] StartActivity in a LinearLayout object

2009-03-26 Thread xuxiake2...@gmail.com
I want to start a new activity in a sub class of LinearLayout when it was clicked and then using onActivityResult to receive result when the new activity finished, just like this

[android-developers] how to implement a Full-screen handwriting input method

2008-12-30 Thread xuxiake2...@gmail.com
Hello, every body! I want to implement a Full-screen handwriting input method. First step,I need draw the handwriting on the screen. The handwriting may cover all the views below it. How can i do? I hope any one can help me. thanks. --~--~-~--~~~---~--~~