码迷,mamicode.com
首页 >  
搜索关键字:prepare    ( 1026个结果
【转】Android -- Looper.prepare()和Looper.loop()
Looper.prepare()和Looper.loop()原文地址:http://blog.csdn.net/heng615975867/article/details/9194219Android中的Looper类,是用来封装消息循环和消息队列的一个类,用于在android线程中进行消息处理。h...
分类:移动开发   时间:2014-08-28 13:07:09    阅读次数:354
Android开之在非UI线程中更新UI
当在非UI线程中更新UI(程序界面)时会出现如下图所示的异常: Only the original thread that created a view hierarchy can touch its views. 那如何才能在非UI线程中更细UI呢? 方法有很多种,在这里主要介绍两种: 第一种:在需要更新UI的代码行后加Looper.prepare();与Looper.loop();两句话即可。如:...
分类:移动开发   时间:2014-08-27 20:34:08    阅读次数:352
Build a Custom Android Kernel Guide
1、package to install in ubuntu or Debian$ sudo apt-get install -ybuild-essential kernel-package libncurses5-dev bzip22、Prepare Kernel Source and excut...
分类:移动开发   时间:2014-08-27 16:20:00    阅读次数:207
java,大数据批量插入、更新
public void exec(Connection conn){ try { conn.setAutoCommit(false); Long beginTime = System.currentTimeMillis(); //构造预处理statement Prepare...
分类:编程语言   时间:2014-08-26 15:06:36    阅读次数:425
poj 1039 Pipe (计算几何)
Pipe Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 9110   Accepted: 2755 Description The GX Light Pipeline Company started to prepare bent pipes for the ...
分类:其他好文   时间:2014-08-24 18:04:13    阅读次数:219
Oracle GoldenGate Install For Linux
DownLoad: http://edelivery.oracle.com      Prepare(Source And Target DB):   Add Environment Varible vi /home/oracle/.bash_profile export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/li...
分类:数据库   时间:2014-08-24 11:43:32    阅读次数:392
MediaPlayer本地播放流程解析(二)
上一篇MediaPlayer本地播放流程解析(一)讲了MediaPlayer的setDataSource流程,本篇将接着讲MediaPlayer的prepare流程。 Prepare前面的流程一直到AwesomePlayer,和setDataSource都基本上一样,这里直接略掉。下面将从AwesomePlayer开始。 status_t AwesomePlayer::prepare() { ...
分类:其他好文   时间:2014-08-20 21:13:12    阅读次数:488
MySQL prepare 原理
Prepare的好处 Prepare SQL产生的原因。首先从mysql服务器执行sql的过程开始讲起,SQL执行过程包括以下阶段词法分析->语法分析->语义分析->执行计划优化->执行。词法分析->语法分析这两个阶段我们称之为硬解析。词法分析识别sql中每个词,语法分析解析SQL语句是否符合sq....
分类:数据库   时间:2014-08-18 20:06:32    阅读次数:500
Android -- Looper.prepare()和Looper.loop() —深入版
Android中的Looper类,是用来封装消息循环和消息队列的一个类,用于在android线程中进行消息处理。handler其实可以看做是一个工具类,用来向消息队列中插入消息的。 (1) Looper类用来为一个线程开启一个消息循环。 默认情况下android中新诞生的线程是没有开启消息循环的.....
分类:移动开发   时间:2014-08-15 17:18:29    阅读次数:259
让工作线程具有消息队列和消息循环
Android的消息队列和消息循环都是针对具体线程的,一个线程可以存在一个消息队列和消息循环,特定线程的消息只能分发给本线程,不能跨线程和跨进程通讯。但是创建的工作线程默认是没有消息队列和消息循环的,如果想让工作线程具有消息队列和消息循环,就需要在线程中先调用Looper.prepare()来创建消...
分类:编程语言   时间:2014-08-10 18:28:20    阅读次数:250
1026条   上一页 1 ... 97 98 99 100 101 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!