package com.examp.use_SQLite.dao;import java.util.ArrayList;import java.util.List;import android.content.ContentValues;import android.content.Context;...
分类:
移动开发 时间:
2014-07-13 23:34:02
阅读次数:
264
1. http请求是以ISO-8859-1的编码来传送url的 如果页面的content-type为utf-8,那么在发送请求时,会将字符转成utf-8后进行传送 如: 中 的UTF-8编码为:E4 B8 AD在请求时为%E4%B8%AD字节之间是%分隔 那么服务器收到这段字节流后,必须...
分类:
编程语言 时间:
2014-07-13 20:48:51
阅读次数:
284
近期工作中,发现了一个bug,是和ListView Adapter有关的。产生了FC,描写叙述信息大约是"The content of the adapter has changed but ListView did not receive a notification. Make sure the...
分类:
其他好文 时间:
2014-07-13 17:51:11
阅读次数:
273
今天看了一下wordpress的代码,里面有些少见的php替代语法,
<?php the_content( __( 'Continue reading →', 'thebox' ) ); ?>
'' . __( 'Pa...
分类:
Web程序 时间:
2014-07-13 16:57:21
阅读次数:
217
不管怎么着,了解一点android的基本知识还是有必要的,就当开阔一些自己的眼界吧。。。。
android的四大功能组件是_activity_,_service_,_BroadcastReceive广播接收器_,_Content
Provider_。
android的系统架构是android,_java_虚拟机和_linux_操作系统。
在Activity的_...
分类:
移动开发 时间:
2014-07-13 16:31:23
阅读次数:
263
本文参考Android应用程序组件Content Provider的启动过程源代码分析http://blog.csdn.net/luoshengyang/article/details/6963418和《Android系统源代码情景分析》,作者罗升阳。
0、总图流程图如下:
1、MainActivity进程向ActivityServiceMana...
分类:
移动开发 时间:
2014-07-13 16:30:39
阅读次数:
293
项目中要用到采集的数据,所以就先拿CSDN博客来试了试。这里使用Simple HTML DOM(官网)这个库,它能够方便的遍历HTML文档。
php
include_once('simple_html_dom.php');
header('Content-Type:text/html;charset=utf-8');
$html = file_get_htm...
分类:
Web程序 时间:
2014-07-13 15:29:04
阅读次数:
262
当你在同一个activity需要题目两个监听事件时,你会发现在DialogInterface.OnClickListener()内部类报错,下去测试了下,发现把你原来的newOnClickListener()换成完整的路径名newandroid.content.DialogInterface.OnClickListener()解决问题,你是我是不是很吊.希望对初学者有帮助,..
分类:
移动开发 时间:
2014-07-13 15:17:31
阅读次数:
187
<?php/***二维数组根据某个字段排序*功能:按照用户的年龄倒序排序*@authorruxing.li*/header(‘Content-Type:text/html;Charset=utf-8‘);$arrUsers=array(array(‘id‘=>1,‘name‘=>‘张三‘,‘age‘=>25,),array(‘id‘=>2,‘name‘=>‘李四‘,‘age‘=>23,),array(‘id‘..
分类:
Web程序 时间:
2014-07-13 15:07:48
阅读次数:
259
就Android平台而言,URI主要分三个部分:scheme, authority and path。其中authority又分为host和port。格式如下:scheme://host:port/path举个实际的例子:content://com.example.project:200/folde...
分类:
移动开发 时间:
2014-07-13 13:19:12
阅读次数:
368