
android
iteye_11596
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vlc-android编译流程
最新直接看这里http://wiki.videolan.org/AndroidCompile 之前在redhat5上编译,一堆莫名错误(应该是编译环境/版本问题),懒得整了,装了个ubuntu虚拟机。操作系统: ubuntu11.04编译流程看文档 vlc-android/extras/package/android/HOWTO, 下面的内容基本这个HOWTO可以在真...原创 2011-06-14 20:07:39 · 148 阅读 · 0 评论 -
简单通用的ContentProvider
常用简单的ContentProvider的实现差不多,整理了个通用的(基于com.example.android.supportv4.app.LoaderThrottleSupport.SimpleProvider修改), 从这个类继承,再重写几个方法就可以了,测试代码见附件。 package com.sh2600.test.contentprovider;impor...原创 2013-02-22 16:38:49 · 114 阅读 · 0 评论 -
android AlarmManager
http://developer.android.com/reference/android/app/AlarmManager.html The Alarm Manager holds a CPU wake lock as long as the alarm receiver's onReceive() method is executing. This guarantees that ...原创 2014-02-11 14:04:12 · 88 阅读 · 0 评论 -
android 当ListView滚动时自动调用 onCheckedChanged 导致CheckBox 状态不停变化
http://blog.sina.com.cn/s/blog_93bca7340102uzmq.html final CheckBox cb = (CheckBox)view.findViewById(R.id.checkBox1);cb.setOnCheckedChangeListener(null);cb.setChecked(mSelectedItems.getBoole...原创 2016-02-24 09:53:40 · 201 阅读 · 0 评论 -
android --core-library 错误
trouble processing "javax/xml/XMLConstants.class":Attempt to include a core VM class in something other than a core library.It is likely that you have attempted to include the core library fr...原创 2012-11-30 09:47:34 · 321 阅读 · 0 评论 -
cocos2d-x tutorials: Start with Android
在windows平台下, 编辑create-android-project.bat文件,根据实际情况修改:set _CYGBIN=e:\cygwin\binset _ANDROIDTOOLS=G:\google\android\sdk\android-sdk-windows\toolsset _NDKROOT=G:\google\android\ndk\android-ndk-r8b...原创 2012-10-15 21:28:43 · 105 阅读 · 0 评论 -
android ndk 找不到 getpwuid_r
需要android-21, 之前的版本有getpwuid原创 2015-08-20 09:25:22 · 431 阅读 · 0 评论 -
android模块化开发
多个apk设置相同的android:sharedUserId, 使用相同的key签名关键代码: LocalActivityManager lam = getLocalActivityManager();//Activity使用ActivityGroupIntent itt = new Intent(); itt.se...原创 2013-05-04 21:11:48 · 134 阅读 · 0 评论 -
android
NinePatch, 中文解释原创 2012-01-26 15:32:54 · 123 阅读 · 0 评论 -
android基础(2)
/**以下内容主要来源于android-sdk-windows/docs**/ services Started ServiceBound Service 线程模型A service runs in the main thread of its hosting process—the service does not create its own thread a...原创 2011-10-03 22:01:26 · 107 阅读 · 0 评论 -
android基础(1)
/**以下内容主要来源于android-sdk-windows/docs**/进程和线程 android的UI是非线程安全的,所以不能在工作线程中访问UI对象,两个简单的原则:1.不要阻塞UI线程2.不要在除UI线程外的线程中直接访问UI对象在工作线程中访问UI对象的方法:[list][*][url=http://developer.android.com...原创 2011-10-01 13:17:56 · 85 阅读 · 0 评论 -
android
1. http://developer.android.com/2. sdk: 3. ndk: 4. http://source.android.com5. http://android.git.kernel.org/6. toolchain: http://android.kernel.org/pub/android-toolchain-20081019.tar.bz2...原创 2010-10-26 23:07:00 · 78 阅读 · 0 评论 -
Installation error: INSTALL_FAILED_UPDATE_INCOMPATIBLE
eclipse调试安装时报错:Installation error: INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package xxxxxxxxxxxxxxxxxxxxxxxx signatures do not match the previously installed version; ignoring!原因签名不同了。 使用adb unins...原创 2017-04-05 22:27:54 · 493 阅读 · 0 评论