[android-developers] Re: JNI problem : from c Languege call Java method

2009-10-15 Thread zhangho
very thanks. i'm already slove this problem atGetStaticMethodID() CallStaticIntMethod() method. On 10月16日, 午前7:54, Michael MacDonald wrote: > The method you are calling is not static, but you are not calling it > with an instance object.  You are calling it with the class object > instead

[android-developers] Re: JNI problem : from c Languege call Java method

2009-10-15 Thread Michael MacDonald
The method you are calling is not static, but you are not calling it with an instance object. You are calling it with the class object instead. Probably you want to make the method you are calling static. zhangho wrote: > JNI problem : from c Languege call Java > > i think from c Languege cal