Android NDK入门 2012.4.4
摘要:
本文讲解如何在Android里使用用c ,c++编写好的库第一步:首先编写java源文件,然后编译package com.testndkso.test;import android.app.Activity;public class TestNDKsoActivity extends Activity { /** Called when the activity is first created. */public native String StringInfo();static //加载库{System.loadLibrary("testInc"); } @Overri 阅读全文
posted @ 2012-04-04 20:03 SDSteam 阅读(170) 评论(0) 推荐(0) 编辑