摘要: http://blog.csdn.net/lihengfang/article/details/8290754http://developer.android.com/intl/zh-cn/guide/topics/ui/themes.htmlhttp://www.cnblogs.com/wangf... 阅读全文
posted @ 2015-09-17 20:25 pepelu 阅读(279) 评论(0) 推荐(0) 编辑
摘要: res/raw和assets的相同点:1.两者目录下的文件在打包后会原封不动的保存在apk包中,不会被编译成二进制。res/raw和assets的不同点:1.res/raw中的文件会被映射到R.java文件中,访问的时候直接使用资源ID即R.id.filename;assets文件夹下的文件不会被映... 阅读全文
posted @ 2015-09-17 19:02 pepelu 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 使用Intent启动activity:Intent intent = new Intent(MainActivity.this, OtherActivity.class);startActivity(intent);使用Intent启动其他app的activity:Intent intent = n... 阅读全文
posted @ 2015-09-17 18:35 pepelu 阅读(327) 评论(0) 推荐(0) 编辑