Android SDK > 7(Android2.1)之后,即Android2.2及以后版本彻底关闭应用的方法,目前试验只有一下方法有效: 参考 https://www.cnblogs.com/zhujiabin/p/5675005.html ...
分类:
移动开发 时间:
2018-03-01 21:49:03
阅读次数:
246
2018年2月初,SANS发布了一年一度的网络威胁情报调研报告。以下是本人的一些理解和内容摘录。报告给出了SANS对CTI的定义:收集、整理和探寻关于对手方的知识。collection, classification, and exploitation of knowledge about adversaries。以及“analyzed information about the intent,
分类:
其他好文 时间:
2018-02-28 11:16:52
阅读次数:
544
package com.example.euphemiaxiao.feedback; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; i... ...
分类:
移动开发 时间:
2018-02-27 11:35:42
阅读次数:
580
深入浅出mybatis之启动详解 MyBatis功能丰富,但使用起来非常简单明了,今天我们来追踪一下它的启动过程。 目录 "如何启动MyBatis" "如何使用MyBatis" "MyBatis启动过程" 如何启动MyBatis 我们知道,SqlSessionFactory是MyBatis中最为核心 ...
分类:
其他好文 时间:
2018-02-24 18:02:54
阅读次数:
1727
转载请注明来源。 加入新特性: 对话框,NumberPicker,专项训练入口界面,新兵、文职人员专栏,自动更新。 总结问题: 1. startActivityForResult(Intent intent,int requestCode)中requestCode要是自然数,否则返回后不会调用onA ...
分类:
其他好文 时间:
2018-02-18 14:13:49
阅读次数:
154
一、显示 Intent 通过设置Activity的包名和类名实现跳转 1. 显示Intenet的第一种方式 Intent intent=new Intent(); packageContext 上下文 cls 被调用控件直接指定该Activity的字节码即可 intent.setClass(pack ...
分类:
其他好文 时间:
2018-02-11 18:07:54
阅读次数:
160
参考:https://www.cnblogs.com/engine1984/p/4146621.html An Intent is a messaging object you can use to request an action from another app component. 可知,I ...
分类:
其他好文 时间:
2018-02-10 15:56:41
阅读次数:
150
java.lang.IllegalArgumentException: Service Intent must be explicit 意思是服务必须得显式的调用 我之前是这样使用绑定Service的 他报错了 因为在5.0之后google升级了SDK 他要求所有的Service服务必须得显式的调用 ...
分类:
编程语言 时间:
2018-02-05 20:08:00
阅读次数:
262
为了应用常驻后台,避免被第三方杀掉的方法 1)Service设置成START-STICKY kill 后会被重启(等待5秒左右),重传Intent,保持与重启前一样 2)通过startForeground将进程设置为前台进程 3)做前台服务,优先级和前台应用一个级别,除非在系统内存非常缺,否则此进程 ...
分类:
其他好文 时间:
2018-01-30 19:47:17
阅读次数:
218
1.启动系统选择联系人界面 Intent intent = new Intent(Intent.ACTION_PICK,ContactsContract.Contacts.CONTENT_URI); startActivityForResult(intent, 0); 2.重写OnActivityR ...
分类:
移动开发 时间:
2018-01-30 16:28:16
阅读次数:
202