Android常用知识点
黑色的眼
这个作者很懒,什么都没留下…
展开
-
Android启动安装程序
Intent intent = new Intent(Intent.ACTION_VIEW);intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//将Activity放入一个新的栈中intent.setDataAndType(Uri.parse("file://" + uri,"application/vnd.android.package原创 2016-04-01 15:44:03 · 473 阅读 · 0 评论 -
Toast防止多次弹出
/** * 防止Toast重复出现多次,保正全局只有一个 * Created by dingkangkang on 16/4/2. */public class ToastFactory { private static Context context=null; private static Toast toast=null; public static Toas原创 2016-04-02 15:47:10 · 520 阅读 · 0 评论 -
DownloadManager的简单使用
1.DownloadManager基本设置 String uri=null; String savePath=null; String appName = null; DownloadManager manager = (DownloadManager)getSystemService(Context.DOWNLOAD_SERVICE);原创 2016-04-01 18:14:03 · 327 阅读 · 0 评论 -
图片裁剪自定义裁剪类(源码)
1.自定义裁剪类package com.example.dingkangkang.imagebg;import java.io.File;import android.app.Activity;import android.content.Context;import android.content.Intent;import android.graphics.Bitmap;i原创 2016-04-15 16:32:09 · 647 阅读 · 0 评论 -
SharedPreferences的简单使用
1.创建一个SharedPreferences使用的工具类,代码很简单/** * Created by dingkangkang on 2017/6/11. */public class SharedPreferenceUtil { private static SharedPreferences sharedPreferences; String PREFS_NAME原创 2017-06-11 01:03:57 · 244 阅读 · 0 评论 -
使用okhttp遇到的问题,简单记录
1.okhttp联网获取数据compile 'com.squareup.okhttp3:okhttp:3.3.1'Github地址:https://github.com/square/okhttp compile 'com.zhy:okhttputils:2.6.2'Github地址:https://github.com/hongyangAndroid/okhttp原创 2017-11-09 19:45:33 · 451 阅读 · 0 评论