上一页 1 2 3 4 5 6 7 8 ··· 14 下一页

2014年12月26日

Android Non-UI to UI Thread Communications(Part 2 of 5)

摘要: Original:http://www.intertech.com/Blog/android-non-ui-to-ui-thread-communications-part-2-of-5/his isthe second part of my series of blog posts on Andr... 阅读全文

posted @ 2014-12-26 14:06 为梦飞翔 阅读(217) 评论(0) 推荐(0)

Android Non-UI to UI Thread Communications(Part 1 of 5)

摘要: original:http://www.intertech.com/Blog/android-non-ui-to-ui-thread-communications-part-1-of-5/ANDROID UI THREAD AND ANROn the Android platform,applica... 阅读全文

posted @ 2014-12-26 14:04 为梦飞翔 阅读(422) 评论(0) 推荐(0)

Android NDK引用预编译的动态链接库

摘要: NDK里有个例子: android-ndk-r10/samples/module-exports/jni一看就懂了———————————————————————————–从r5版本开始,就支持预编译的库(共享和静态). 也就是说在你的应用中,可包含和使用 预先编译的库。这个功能的用处1. 你想分发你... 阅读全文

posted @ 2014-12-26 13:58 为梦飞翔 阅读(2619) 评论(0) 推荐(0)

ANDROID STUDIO, GRADLE AND NDK INTEGRATION

摘要: Originally posted on:http://ph0b.com/android-studio-gradle-and-ndk-integration/With the recent changes (release 0.7.3 around Dec 27), thenew Android B... 阅读全文

posted @ 2014-12-26 13:55 为梦飞翔 阅读(979) 评论(0) 推荐(0)

Android上使用MP3格式录制声音

摘要: 0. 下载LAME 并解压缩http://lame.sourceforge.net/download.phphttp://sourceforge.net/projects/lame/files/lame/3.99/lame-3.99.5.tar.gz1. 创建jni/libmp3lame/src目录... 阅读全文

posted @ 2014-12-26 13:52 为梦飞翔 阅读(2685) 评论(0) 推荐(0)

Include Native *.so Library in APK With Android Studio

摘要: Originally posted on:http://www.kylethielk.com/blog/include-native-so-library-in-apk-with-android-studio/Using the Android NDK is well documented thro... 阅读全文

posted @ 2014-12-26 13:50 为梦飞翔 阅读(301) 评论(0) 推荐(0)

2013年8月30日

listview

摘要: 1 public class Test { 2 3 /** 4 * @param args 5 */ 6 public static void main(String[] args) { 7 // TODO Auto-generated method stub 8 ArrayList aa = new ArrayList(); 9 aa.add(new Test.Info("工具1",true,2222));10 aa.add(new Test.Info("tag", true, 0));1... 阅读全文

posted @ 2013-08-30 01:25 为梦飞翔 阅读(213) 评论(0) 推荐(0)

2013年7月1日

随笔2

摘要: 1、接口的中的变量类型是 final static,方法是public abstract2、内部类依托于外部类对象而存在,内部类定义在函数体内,且需要访问该函数的参数或者是该函数的定义的本地变量时,这些变量需要被强制声明为final类型。3、对于一个类来说,只有public和缺省的访问权限,而内部类则有public,protected,缺省,private访问权限,其可以被abstract,final,static等修饰,当被static修饰时,该类产生对象就不需要依靠外部类对象,同样其也就不可以访问外部类的非静态成员变量和函数了。 阅读全文

posted @ 2013-07-01 23:07 为梦飞翔 阅读(170) 评论(0) 推荐(0)

2013年6月20日

const

摘要: 根据ANSI C标准的赋值约束条件: 1. 两个操作数都是指向有限定符或无限定符的相容类型的指针。 2. 左边指针所指向的类型必须具有右边指针所指向类型的全部限定符。一、const char*和char* const char*的类型是:“指向一个具有const限定符的char类型的指针”。(不能修改其值) char*的类型是:“指向一个char类型的指针”。 因此const char*和char*都是指向char类型的指针,只不过const char*指向的char类型是const的。 因此对于代码:char* src;const char* dest ;dest = src; 这样赋值是正 阅读全文

posted @ 2013-06-20 01:47 为梦飞翔 阅读(423) 评论(0) 推荐(0)

2013年5月16日

android studio 下载地址

摘要: https://developer.android.com/sdk/installing/studio.html#download 阅读全文

posted @ 2013-05-16 10:38 为梦飞翔 阅读(222) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 8 ··· 14 下一页

导航