摘要: 百变遥控http://blog.sina.com.cn/u/2596044220 阅读全文
posted @ 2013-06-03 15:50 hexiancheng 阅读(119) 评论(0) 推荐(0)
摘要: 本文介绍Android中的5种数据存储方式。数据存储在开发中是使用最频繁的,在这里主要介绍Android平台中实现数据存储的5种方式,分别是:1使用SharedPreferences存储数据2文件存储数据3SQLite数据库存储数据4使用ContentProvider存储数据5网络存储数据下面将为大家一一详细介绍。第一种:使用SharedPreferences存储数据SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置比如窗口状态,一般在Activity中 重载窗口状态onSaveInstanceState保存一般使用SharedPreferen 阅读全文
posted @ 2013-05-28 16:36 hexiancheng 阅读(107) 评论(0) 推荐(0)
摘要: 一、获得APK源代码:工具下载:需用到dex2jar和JD-GUI这2个工具dex2jar下载地址:http://laichao.googlecode.com/files/dex2jar-0.0.7-SNAPSHOT.zipJD-GUI下载地址: windows版JD-GUI:http://laichao.googlecode.com/files/jdgui.zip Linux版JD-GUI:http://laichao.googlecode.com/files/jd-gui-0.3.2.linux.i686.tar.gz步骤:1.把apk文件改名为.zip,然后解压缩,得到其中的classe 阅读全文
posted @ 2013-05-17 14:18 hexiancheng 阅读(1019) 评论(1) 推荐(0)
摘要: //播放指定路径文件的视频public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent localIntent = new Intent(); localIntent.setFlags(268435456); localIntent.setAction("android.intent.action.VIEW"); Uri localUri = 阅读全文
posted @ 2013-05-17 14:03 hexiancheng 阅读(257) 评论(0) 推荐(0)
摘要: http://www.vifo.com.cn/fanti/ 阅读全文
posted @ 2013-05-17 13:50 hexiancheng 阅读(162) 评论(0) 推荐(0)