<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><ti..
分类:
其他好文 时间:
2014-05-27 03:41:43
阅读次数:
304
在我们开发一些如通讯录、社交等应用或者应用添加新功能模块时,会考虑在对应的图标上加上未读信息的数量,或者是新功能提醒的图标,这样不占太大空间还能达到提示的目的.
之前在MMS分析部分,也有人问过我这种提醒的实现. 关于这种提醒的添加,我总结了下,有大概几种方法可以实现:1. 在对应的布局放置Text...
分类:
移动开发 时间:
2014-05-23 09:12:27
阅读次数:
268
DMC Text Filter是北京市红樱枫软件有限公司自主独立开发完成的,支持多平台、多线程、多语言的通用文本抽出程序库。利用该程序库可以从数十种数据文件格式中,将纯文本数据进行抽出。...
分类:
其他好文 时间:
2014-05-23 08:14:49
阅读次数:
269
题目大意:
输入一个文章,[ 就是把光标放到最前面 ] 把光标放到最后面。
输出最后得到的文章。
思路分析:
用deque 模拟。
#include
#include
#include
#include
#define maxn 111111
using namespace std;
char str[maxn];
deque Q;
deque::itera...
分类:
其他好文 时间:
2014-05-23 08:12:11
阅读次数:
335
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Tex...
分类:
其他好文 时间:
2014-05-22 12:36:05
阅读次数:
243
1 . 建立一个 single view class
2 . 在view controller上建立3个控件 text view,button, webview
3 . 将 text view , webview风别命名为 url,web
//// ViewController.h// webview1//// Created by HeJiasheng on 13-11-12...
分类:
移动开发 时间:
2014-05-22 12:22:35
阅读次数:
352
如何使用oracle 的DBMS_SQLTUNE package 来运行 Sql Tuning Advisor 进行sql 自动调优
1》。这里简单举个例子来说明DBMS_SQLTUNE 的使用
首先现执行下某个想要调优的sql,然后获取sqlid
SQL> select * from v$sqltext where sql_text like 'select * from dua...
分类:
数据库 时间:
2014-05-22 10:47:51
阅读次数:
328
webView.getSettings().setDefaultTextEncodingName("UTF-8");webView.loadData(mMerchandise.productDescription,"text/html;charset=UTF-8",null);webView.getSettings().setDefaultTextEncodingName("UTF-8");webView.loadDataWithBaseURL(Constants.WOOYOU,mMerchandise.pr..
分类:
Web程序 时间:
2014-05-20 22:40:11
阅读次数:
422
标签:
css属性:font-family,font-size,font-weight,font-style,color,text-decoration,text-align:justify;letter-spacing,wo...
分类:
Web程序 时间:
2014-05-20 09:58:52
阅读次数:
311
定义和用法 标签被用来组合文档中的行内元素。HTML 与 XHTML
之间的差异NONE提示和注释:提示:请使用 来组合行内元素,以便通过样式来格式化它们。注释:span
没有固定的格式表现。当对它应用样式时,它才会产生视觉上的变化。例子some text.some other text.例子解释....
分类:
Web程序 时间:
2014-05-20 08:26:17
阅读次数:
431