如何将库.so文件加载到android应用程序中?

|                                                                                                                       
已邀请:
        使用此代码..
 public class NativeLib {

      static {
        System.loadLibrary(\"ndk_demo\");
      }

      /** 
       * Adds two integers, returning their sum
       */
      public native int add( int v1, int v2 );

      /**
       * Returns Hello World string
       */
      public native String hello();
    }
有关更多信息。.http://marakana.com/forums/android/examples/49.html     

要回复问题请先登录注册