有些手机以及平板中有一种访客模式,打开访客模式,我们将无法拖动Launcher上的图标,也无法打开adb
主要操作就是在打开开关的地方执行如下操作
GuestModeUtil guestModeUtil = GuestModeUtil.getInstance(getActivity());
guestModeUtil.save(pin);// 保存PIN码
SystemProperties...
分类:
其他好文 时间:
2014-11-15 08:55:44
阅读次数:
236
有的时候,需要自己设定排序,java的一个接口如下: String time1 = ConstValue.GetCurrentDate(); SortBuilder sortBuilder = SortBuilders.fieldSort("tfp_save_time")...
分类:
编程语言 时间:
2014-11-14 10:43:02
阅读次数:
234
intellij idea 14 插件IdentifierHighlighter 报错 Could not save application settings 解决办法!...
分类:
移动开发 时间:
2014-11-14 09:18:20
阅读次数:
276
题目:给你几个数,求使他们同于的最大除数。
分析:数论。取其中两不相同数的差,差值一定是除数的倍数,利用差值枚举除数即可。
说明:小心都是素数的情况,被坑了╮(╯▽╰)╭。
#include
#include
#include
#include
#include
using namespace std;
long long save[1001];
int main()
{
...
分类:
其他好文 时间:
2014-11-11 19:14:16
阅读次数:
222
IntroductionHTML5 kills off flash; HTML5 kills off Silverlight; HTML5 makes the dinner and does the ironing too. HTML5 is going to save the (tech) wor...
分类:
Web程序 时间:
2014-11-11 18:29:38
阅读次数:
508
一,下面是JS中的主体function initTablList() { $('#tbmain').edatagrid({ url: '/Team/TeamInfo/GetData/', saveUrl: '/Team/TeamInfo/Save/', updateUrl: '/Team/TeamI...
分类:
其他好文 时间:
2014-11-11 16:17:01
阅读次数:
161
查看防火墙状态/etc/init.d/iptables status/sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT#其中8080为指定的端口/etc/rc.d/init.d/iptables save #将更改进行保存/etc/init.d...
分类:
系统相关 时间:
2014-11-11 16:10:33
阅读次数:
150
public class TestsuActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(save...
分类:
移动开发 时间:
2014-11-11 14:21:43
阅读次数:
206
mongodb的save和insert函数都可以向collection里插入数据,但两者是有两个区别: 一、使用save函数里,如果原来的对象不存在,那他们都可以向collection里插入数据,如果已经存在,save会调用update更新里面的记录...
分类:
数据库 时间:
2014-11-10 18:14:37
阅读次数:
267
参考文章:http://www.cnblogs.com/leiOOlei/p/3725911.html自己的亲身体会,来源问题this.sessionFactory.getCurrentSession().save(obj);保存不了数据。原因在springMVC配置事务时,事务注解应该在类扫描注解...
分类:
编程语言 时间:
2014-11-10 17:17:11
阅读次数:
260