移动开发
BoyBestOne
没有需求就没有追求
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
android源码下载python脚本
-*- coding: utf-8 import xml.dom.minidom import os from subprocess import call 1. 修改为源码要保存的路径 rootdir = “E:/Android_Source” 2. 设置 git 安装的路径 git = “d:/git/git/bin/git.exe” 3. 修改为第一步中 manifest 中 default...原创 2020-04-21 18:34:17 · 5842 阅读 · 0 评论 -
android getAppName踩坑记录
目前常用的获取appname的方法有下面两种: public static String getAppName(Context context) { try { PackageManager packageManager = context.getPackageManager(); PackageInfo packageInfo = packageManager.ge...原创 2020-03-09 17:13:18 · 1159 阅读 · 0 评论 -
Use SQLite Instead of Local Storage In Ionic Framework
Switching to object-based data storage can often be tough. If you’re trying to start Phonegap or Ionic Framework development and are coming from native development, the whole local storage concept can原创 2016-06-28 14:48:24 · 565 阅读 · 1 评论 -
在ionic上使用sqlite
在看一篇文章,《Use SQLite Instead of Local Storage In Ionic Framework》,觉得挺好,因为之后开发可能需要用到,所以顺便翻译一下,记录下来以后使用。 首先创建我们的ionic项目: ionic start IonicProject blank cd IonicProject ionic platform add and翻译 2016-06-28 14:51:24 · 7326 阅读 · 3 评论 -
Glide3.7升级到4.X
现在做android应用开发图片加载这一块基本上都是用的Glide,3.7升级到4.x的过程中,依赖导入方式没有发生变化,只需要变更版本号就可以了,最大的区别在于使用Glide进行图片加载的时候参数设置方面。 dependencies { compile 'com.github.bumptech.glide:glide:3.7.0' } 变更后: dependen...原创 2019-06-25 10:44:10 · 2504 阅读 · 2 评论
分享