<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>zrong&#039;s Blog &#187; 手机</title>
	<atom:link href="http://zengrong.net/post/tag/%e6%89%8b%e6%9c%ba/feed" rel="self" type="application/rss+xml" />
	<link>http://zengrong.net</link>
	<description>Flash、Flex、RIA、web、Linux和我的生活</description>
	<lastBuildDate>Thu, 09 Feb 2012 15:09:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Android设备分辨率计算</title>
		<link>http://zengrong.net/post/1494.htm</link>
		<comments>http://zengrong.net/post/1494.htm#comments</comments>
		<pubDate>Fri, 23 Dec 2011 16:24:11 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://zengrong.net/?p=1494</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/1494.htm" title="Android设备分辨率计算"></a>面对Android设备那混乱的硬件体系，最淡定的开发者也会不免蛋疼起来。在做Android UI的时候，考虑最多的就是这些不同设备的适配问题。在为不同分辨率设计不同UI的时候，我们首先要知道目标设备的分辨率到底是多少。如何计算出来？ 水果手机经常喜欢用分辨率超过人眼极限来标榜自己的设备有多么牛B，据说iPhone 4S的分辨率达到了326 PPI(pixel per inch)，这个数值的计算公式为： 开方(屏幕宽度平方+屏幕高度平方)÷对角线尺寸 iPhone 4S，960&#215;640像素，对角线尺寸3.5英寸，用上面的公式计算结果如下： sqrt(sqr(960) + sqr(640)) / 3.5 ≈ 329.65 看来水果公司并未说谎。只是3.5寸的屏搞这么高的分辨率，考视力么？ 和水果比起来，Android就更加复杂了，它把屏幕分成small,normal,large,xlarge四种，其对应的屏幕尺寸如下： xlarge 至少960dp x 720dp large 至少640dp x 480dp normal 至少470dp x 320dp small 至少426dp x 320dp dp(Density-independent pixel)是一个密度无关的像素单位，是用来表示基于160 dpi的设备计算出来的虚拟像素。 屏幕分辨率被分成low dpi,medium &#8230;<p class="read-more"><a href="http://zengrong.net/post/1494.htm">继续阅读 &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/1494.htm" title="Android设备分辨率计算"></a><p>面对Android设备那混乱的硬件体系，最淡定的开发者也会不免蛋疼起来。在做Android UI的时候，考虑最多的就是这些不同设备的适配问题。在为不同分辨率设计不同UI的时候，我们首先要知道目标设备的分辨率到底是多少。如何计算出来？</p>
<p>水果手机经常喜欢用分辨率超过人眼极限来标榜自己的设备有多么牛B，<a href="http://www.apple.com/iphone/features/retina-display.html">据说iPhone 4S的分辨率达到了326 PPI(pixel per inch)</a>，这个数值的计算公式为：</p>
<pre>
开方(屏幕宽度平方+屏幕高度平方)÷对角线尺寸
</pre>
<p>iPhone 4S，960&#215;640像素，对角线尺寸3.5英寸，用上面的公式计算结果如下：<span id="more-1494"></span></p>
<pre>sqrt(sqr(960) + sqr(640)) / 3.5 ≈ 329.65</pre>
<p>看来水果公司并未说谎。只是3.5寸的屏搞这么高的分辨率，考视力么？</p>
<p>和水果比起来，Android就更加复杂了，它把屏幕分成small,normal,large,xlarge四种，其对应的屏幕尺寸如下：</p>
<ul>
<li>xlarge 至少960dp x 720dp</li>
<li>large 至少640dp x 480dp</li>
<li>normal 至少470dp x 320dp</li>
<li>small 至少426dp x 320dp</li>
</ul>
<p><strong>dp(Density-independent pixel)是一个密度无关的像素单位，是用来表示基于160 dpi的设备计算出来的虚拟像素。</strong></p>
<p>屏幕分辨率被分成low dpi,medium dpi,high dpi,extra high dpi。详见下图：</p>
<p><img src="/wp-content/uploads/2011/12/screens-ranges.png" alt="Android设备尺寸定义" /></p>
<p>最近的Android设备屏幕分布图：</p>
<p><img src="/wp-content/uploads/2011/12/android_screen_20111201.png" alt="Android设备尺寸分布" /></p>
<p>更详细的文章：</p>
<ul>
<li><a href="http://developer.android.com/guide/practices/screens_support.html">Supporting Multiple Screens</a></li>
<li><a href="http://developer.android.com/resources/dashboard/screens.html">Screen Sizes and Densities</a></li>
</ul>
<p>另外，在分辨率单位上，<strong>DPI(dots per inch)和PPI(pixel per inch)目前已经通用。</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/1494.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google联系人自定义导入小工具开发过程及源码</title>
		<link>http://zengrong.net/post/1032.htm</link>
		<comments>http://zengrong.net/post/1032.htm#comments</comments>
		<pubDate>Tue, 29 Jun 2010 02:31:46 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://zengrong.net/?p=1032</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/1032.htm" title="google联系人自定义导入小工具开发过程及源码"></a>一、起因 做这个小工具的起因是把黑莓8700g换成了Android系统的三星i5700。由于我的8700g是4.2版本的ROM，不支持google sync程序的安装，而我换了手机后又懒得再去鼓捣黑莓的刷机，因此就直接用黑莓的管理软件导出CSV文件，然后在gmail的通讯录管理界面中导入。 可是问题就接踵而来，gmail的通讯录导入程序不能识别黑莓导出的所有字段，因此只有部分字段被导入到gmail 通讯录中了，这显然不行。 接着我用gmail通讯录导出了一个csv文件，然后按照导出的CSV文件的格式来修改黑莓导出的CSV文件，并使排序完全一致。结果这样也不行，导入的通讯录更加不完整。 仔细查看了gmail的帮助，根据帮助提供的范例修改了CSV的字段名称，倒是可以导入。但gmail帮助提供的范例中的字段很少，并不能完整的支持我的通讯录。 我试验过的gmail通讯录导入支持的字段如下： 名,姓,公司（或者用“单位”也可以）,职务,移动电话,住宅电话,电子邮件地址 如果联系人的信息并不多，那么用上面的字段就可以完成了，可是我的很多联系人，都有超过2个以上的电话，有十几个联系人有4个电话，因此就没办法用这个来导入。 这还不算，最大的问题，是gmail中的导入功能无法支持群组的导入。也就是说，原来在黑莓中对联系人进行的分组，都无法识别成gmail的群组。 要解决以上问题，就只能使用Google Contacts Data API来处理了。 二、分析与选择 Google Data API其实已经提供了很多客户端库，但是唯独没有基于ActionScript的。因此只能使用XML来处理。 1.AIR还是SWF 本来准备做两个版本，先做SWF版，然后转成AIR版，但后来发现SWF有很多限制，因此只能使用AIR来制作这个工具。 SWF的限制包括： 仅支持HTTP协议的POST和GET方法，不支持PUT和DELETE，Google Data API的某些操作是需要PUT和DELETE的。（对PUT、DELETE不清楚的可以看这里） google的跨域文件的限制 2.选择何种google账户认证方式 google提供了三种账户认证的方式（注意：这个页面的ClientLogin的“了解详情”链接是错误的，要访问正确的地址，可猛击这里）、OAuth、AuthSub和ClientLogin,我对这三种都进行了测试。Google推荐使用的是OAuth，这种认证方式复杂但安全，它需要打开google的登录界面进行登录，登录后再返回软件界面。对于桌面程序来说，这就要判断用户的操作，怎样才算作登录成功了。比如判断浏览器的标题栏、或者判断cookie、或者使用时间轮询等等。对于一个小工具来说，这太复杂了。 AuthSub与OAuth类似，但流程要简单一些，还是要使用google的登录界面。 ClientLogin就简单多了，只需要提供google账户的用户名和密码就可以了。因此这个工具使用的是ClientLogin。 3.Google数据API（Google Data API） 这里是Google Data API的列表页面，其中，Goole 账户验证和Google 数据 API是大部分API都要用到的规范，只要涉及到数据处理和账户验证，都要用到这两个API，而对应的产品也有自己的API，例如google通讯录的API就是Google Contacts &#8230;<p class="read-more"><a href="http://zengrong.net/post/1032.htm">继续阅读 &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/1032.htm" title="google联系人自定义导入小工具开发过程及源码"></a><h3>一、起因</h3>
<p>做这个小工具的起因是把黑莓8700g换成了Android系统的三星i5700。由于我的8700g是4.2版本的ROM，不支持google sync程序的安装，而我换了手机后又懒得再去鼓捣黑莓的刷机，因此就直接用黑莓的管理软件导出CSV文件，然后在gmail的通讯录管理界面中导入。</p>
<p>可是问题就接踵而来，gmail的通讯录导入程序不能识别黑莓导出的所有字段，因此只有部分字段被导入到gmail 通讯录中了，这显然不行。</p>
<p>接着我用gmail通讯录导出了一个csv文件，然后按照导出的CSV文件的格式来修改黑莓导出的CSV文件，并使排序完全一致。结果这样也不行，导入的通讯录更加不完整。</p>
<p>仔细查看了gmail的帮助，根据帮助提供的范例修改了CSV的字段名称，倒是可以导入。但gmail帮助提供的范例中的字段很少，并不能完整的支持我的通讯录。</p>
<p>我试验过的gmail通讯录导入支持的字段如下：<span id="more-1032"></span></p>
<blockquote><p>名,姓,公司（或者用“单位”也可以）,职务,移动电话,住宅电话,电子邮件地址</p></blockquote>
<p>如果联系人的信息并不多，那么用上面的字段就可以完成了，可是我的很多联系人，都有超过2个以上的电话，有十几个联系人有4个电话，因此就没办法用这个来导入。</p>
<p>这还不算，最大的问题，是gmail中的导入功能无法支持群组的导入。也就是说，原来在黑莓中对联系人进行的分组，都无法识别成gmail的群组。</p>
<p>要解决以上问题，就只能使用Google Contacts Data API来处理了。</p>
<h3>二、分析与选择</h3>
<p>Google Data API其实已经提供了很多<a title="google api client library" href="http://code.google.com/intl/zh-CN/apis/gdata/docs/client-libraries.html" target="_blank">客户端库</a>，但是唯独没有基于ActionScript的。因此只能使用<a href="http://code.google.com/intl/zh-CN/apis/contacts/docs/3.0/developers_guide_protocol.html" target="_blank">XML</a>来处理。</p>
<p><strong>1.AIR还是SWF</strong></p>
<p>本来准备做两个版本，先做SWF版，然后转成AIR版，但后来发现SWF有很多限制，因此只能使用AIR来制作这个工具。</p>
<p>SWF的限制包括：</p>
<ol>
<li>仅支持HTTP协议的POST和GET方法，不支持PUT和DELETE，Google Data API的某些操作是需要PUT和DELETE的。（对PUT、DELETE不清楚的可以看<a href="http://blog.csdn.net/gideal_wang/archive/2009/07/02/4316691.aspx" target="_blank">这里</a>）</li>
<li>google的跨域文件的限制</li>
</ol>
<p><strong>2.选择何种google账户认证方式</strong></p>
<p>google提供了<a href="http://code.google.com/intl/zh-CN/apis/accounts/" target="_blank">三种账户认证</a>的方式（注意：这个页面的ClientLogin的“了解详情”链接是错误的，要访问正确的地址，可<a href="http://code.google.com/intl/zh-CN/apis/gdata/docs/auth/clientlogin.html" target="_blank">猛击这里</a>）、OAuth、AuthSub和<a href="http://code.google.com/intl/zh-CN/apis/gdata/docs/auth/clientlogin.html" target="_blank">ClientLogin</a>,我对这三种都进行了测试。Google推荐使用的是OAuth，这种认证方式复杂但安全，它需要打开google的登录界面进行登录，登录后再返回软件界面。对于桌面程序来说，这就要判断用户的操作，怎样才算作登录成功了。比如判断浏览器的标题栏、或者判断cookie、或者使用时间轮询等等。对于一个小工具来说，这太复杂了。</p>
<p>AuthSub与OAuth类似，但流程要简单一些，还是要使用google的登录界面。</p>
<p>ClientLogin就简单多了，只需要提供google账户的用户名和密码就可以了。因此这个工具使用的是ClientLogin。</p>
<p><strong>3.Google数据API（Google Data API）</strong></p>
<p><a href="http://code.google.com/intl/zh-CN/more/" target="_blank">这里</a>是Google Data API的列表页面，其中，<a href="http://code.google.com/apis/accounts/" target="_blank">Goole 账户验证</a>和<a href="http://code.google.com/apis/gdata/">Google 数据 API</a>是大部分API都要用到的规范，只要涉及到数据处理和账户验证，都要用到这两个API，而对应的产品也有自己的API，例如google通讯录的API就是<a href="http://code.google.com/intl/zh-CN/apis/contacts/" target="_blank">Google Contacts Data API</a>，联系人API中的很多细节，却是Google 数据 API提供的。</p>
<p><strong>4.E4X</strong></p>
<p>在没有客户端库的情况下，对XML的操作，是个挺麻烦的事情。这个小工具很简单，大部分的工作量其实都花在对XML的处理上。大量的XML操作让我感觉到E4X真的是却是非常方便和优雅。对于E4X操作，下面这两篇文章有很大的参考价值：</p>
<p><a href="http://www.nshen.net/blog/article.asp?id=462" target="_blank">e4x &#8211; 对xml操作的一些示例 </a></p>
<p><a href="http://sban.biz/223" target="_blank">E4X用法简要</a></p>
<p>或许，我后面也会写一篇经验吧。</p>
<h3>三、工具使用注意事项</h3>
<ul>
<li>CSV编码必须为UTF-8；</li>
<li>CSV字段名称不能重复；</li>
<li>CSV的换行符默认使用“\n”，可以在源码google::GoogleContact.CSV_LINE_BREAK中修改。“\n”是Linux系统的默认换行符，windows系统的默认换行符为“\r\n”。具体你的CSV是使用什么作为换行符，可以在CSV的编辑工具中指定。许多文本编辑器支持换行符的转换。</li>
<li>CSV中联系人群组字段的名称必须为“群组”（当然，可以在源码中自己改google::GoogleContact.CSV_GROUP_FIELD_NAME）；</li>
<li>每一次提交之后，不要重复操作，要等待google返回后再处理。</li>
</ul>
<h3>四、下载信息</h3>
<p style="text-align: center;"><a href="/wp-content/uploads/2010/06/googleContactImpoter.png"><img class="size-medium wp-image-1033 aligncenter" title="googleContactImpoter" src="http://zengrong.net/wp-content/uploads/2010/06/googleContactImpoter-300x210.png" alt="" width="300" height="210" /></a></p>
<p>1.下载<a href="http://get.adobe.com/air" target="_blank">AIR运行时</a>并安装；<br />
2.下载AIR包并双击安装：<br />
Note: There is a file embedded within this post, please visit this post to download the file.</p>
<p style="text-align: left;">源码：<a href="http://googlecontactimporter.googlecode.com/svn/trunk/" target="_blank">http://googlecontactimporter.googlecode.com/svn/trunk/</a></p>
<p style="text-align: left;">项目地址：<a href="http://googlecontactimporter.googlecode.com/" target="_blank">http://googlecontactimporter.googlecode.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/1032.htm/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HP MiniNote 2133图</title>
		<link>http://zengrong.net/post/484.htm</link>
		<comments>http://zengrong.net/post/484.htm#comments</comments>
		<pubDate>Thu, 24 Jul 2008 14:26:24 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[乱弹]]></category>
		<category><![CDATA[惠普]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.zengrong.net/?p=484</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/484.htm" title="HP MiniNote 2133图"></a>Show一下：我正在用的联想昭阳260（14寸）、HP MiniNote 2133（8.9寸）和多普达D900（3.7寸，手机）的对比图。 多普达900上面放的是5号（AA）充电电池。]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/484.htm" title="HP MiniNote 2133图"></a><p>Show一下：我正在用的联想昭阳260（14寸）、HP MiniNote 2133（8.9寸）和多普达D900（3.7寸，手机）的对比图。<br />
<span id="more-484"></span><br />
<a href="/wp-content/uploads/2008/07/lenovo260_hp2133_dopod900_2.jpg" rel="lightbox[hp2133]"><img src="/wp-content/uploads/2008/07/lenovo260_hp2133_dopod900_2s.jpg" alt="比较图1" title="比较图1" width="640" height="585" class="aligncenter size-medium wp-image-486" /></a></p>
<p><a href="/wp-content/uploads/2008/07/lenovo260_hp2133_dopod900_3.jpg"  rel="lightbox[hp2133]"><img src="/wp-content/uploads/2008/07/lenovo260_hp2133_dopod900_3s.jpg" alt="比较图2" title="比较图2" width="640" height="554" class="alignnone size-medium wp-image-489" /></a></p>
<p><a href="/wp-content/uploads/2008/07/lenovo260_hp2133_dopod900_4.jpg"  rel="lightbox[hp2133]"><img src="/wp-content/uploads/2008/07/lenovo260_hp2133_dopod900_4s.jpg" alt="比较图2" title="比较图3" width="640" height="509" class="alignnone size-medium wp-image-489" /></a></p>
<p>多普达900上面放的是5号（AA）充电电池。</p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/484.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>让电脑通过多普达900上网</title>
		<link>http://zengrong.net/post/281.htm</link>
		<comments>http://zengrong.net/post/281.htm#comments</comments>
		<pubDate>Sun, 05 Nov 2006 23:44:09 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[应用]]></category>
		<category><![CDATA[GPRS]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.zengrong.net/?p=281</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/281.htm" title="让电脑通过多普达900上网"></a>熬夜配置电脑共享多普达900的GPRS上网成功，写一些经验吧： 首先转载一篇写的简单明了的文章： 转自小草 先下载安装驱动和拨号程序： 1、拨掉手机数据线，然后调出2K或XP的任务管理器，结束wcescomm.EXE的任务 2、然后在手机里面选择：开始－附件－调制解压器连接，选择你与电脑的连接方式（USB模式或者红外模式），然后右软键菜单里选择“激活”（千万不要点完成，否则调制解调器又关上了） 3、连上数据线，这时候电脑就会检查到新设备，装好驱动（驱动就是那个Inf文件）。 4、最后双击刚才下载的那个压缩包里面的UModem_Dialer拨号程序，在最下面那行“internet”改为“cmwap”（一般不用改，默认就是了），不需要输入用户名和密码直接拨号！成功后右下角有网络图标。提示连接成功230K。呵呵，赶快试一下QQ吧，打开IE试试。 注意：第一次安装驱动时可能要重新插拨一次数据线。另外，我提供下载的UModem_Dialer拨号软件已将internet改为默认cmwap了，不用担心忘记改又用CMNET方式上网。 使用上面的内容就可以配置成功了，但还有几点需要强调的： 我使用的是基于windows Mobile 5.0操作系统的手机，估计上文作者的手机也应该是Windows Mobile操作系统的多普达系列手机。windows将手机识别为HTC USB Modem（如图所示），因此不能确定此驱动程序是否适合多普达系列以外的Windows Mobile操作系统。 此方法不适用于Symbian或者Linux系统的手机 拨号软件可以不用上文作者提及的USBModem_Dialer.exe，因为Windows 自带拨号程序，可以使用“开始－设置－网络连接－新建网络连接向导－连接到Internet－手动设置我的连接－用拨号调制解调器连接”来添加即可。我在操作的时候并未手动添加连接，因为一打开firefox，就自动弹出了一个连接对话框，连要拨的号码*99#都自动设置好了（如图所示）。我的操作系统是在Window XP sp2。 连接成功之后，显示的速度是230.4kbps，经过测试，我在使用的过程中最高速度可以达到7.1KBps，大约是56.8kbps，和猫的速度差不多。 用电脑上网和用手机上网的流量完全不在一个档次，我上淘宝逛了一圈，就发现已经用了5M流量……平常我每个月的流量也不过6MB而已呀……所以，如果你不是非常的有钱，最好把浏览器的图片显示和Flash显示关闭。]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/281.htm" title="让电脑通过多普达900上网"></a><p>熬夜配置电脑共享多普达900的GPRS上网成功，写一些经验吧：</p>
<p>首先转载一篇写的简单明了的文章：</p>
<blockquote><p> 转自<a href="http://www.cnblogs.com/liubiqu/archive/2006/07/11/447765.html" target="_blank">小草</a><br />
先下载安装驱动和拨号程序：<br />
Note: There is a file embedded within this post, please visit this post to download the file.<br />
1、拨掉手机数据线，然后调出2K或XP的任务管理器，结束wcescomm.EXE的任务<br />
2、然后在手机里面选择：开始－附件－调制解压器连接，选择你与电脑的连接方式（USB模式或者红外模式），然后右软键菜单里选择“激活”（千万不要点完成，否则调制解调器又关上了）<br />
3、连上数据线，这时候电脑就会检查到新设备，装好驱动（驱动就是那个Inf文件）。<br />
4、最后双击刚才下载的那个压缩包里面的UModem_Dialer拨号程序，在最下面那行“internet”改为“cmwap”（一般不用改，默认就是了），不需要输入用户名和密码直接拨号！成功后右下角有网络图标。提示连接成功230K。呵呵，赶快试一下QQ吧，打开IE试试。</p>
<p>注意：第一次安装驱动时可能要重新插拨一次数据线。另外，我提供下载的UModem_Dialer拨号软件已将internet改为默认cmwap了，不用担心忘记改又用CMNET方式上网。</p></blockquote>
<p>使用上面的内容就可以配置成功了，但还有几点需要强调的：<span id="more-281"></span></p>
<ol>
<li>我使用的是基于windows Mobile 5.0操作系统的手机，估计上文作者的手机也应该是Windows Mobile操作系统的多普达系列手机。windows将手机识别为HTC USB Modem（如图所示），因此不能确定此驱动程序是否适合多普达系列以外的Windows Mobile操作系统。<br />
<img src="http://www.zengrong.net/wp-content/uploads/2006/11/htc_usb_modem.png" id="image282" alt="htc_usb_modem.png" /></li>
<li> 此方法不适用于Symbian或者Linux系统的手机</li>
<li>拨号软件可以不用上文作者提及的USBModem_Dialer.exe，因为Windows 自带拨号程序，可以使用“开始－设置－网络连接－新建网络连接向导－连接到Internet－手动设置我的连接－用拨号调制解调器连接”来添加即可。我在操作的时候并未手动添加连接，因为一打开firefox，就自动弹出了一个连接对话框，连要拨的号码*99#都自动设置好了（如图所示）。我的操作系统是在Window XP sp2。<br />
<img src="http://www.zengrong.net/wp-content/uploads/2006/11/htc_usb_modem_2.png" id="image283" alt="htc_usb_modem_2.png" /></li>
<li>连接成功之后，显示的速度是230.4kbps，经过测试，我在使用的过程中最高速度可以达到7.1KBps，大约是56.8kbps，和猫的速度差不多。<br />
<img src="http://www.zengrong.net/wp-content/uploads/2006/11/htc_usb_modem_3.png" id="image284" alt="htc_usb_modem_3.png" /></li>
<li>用电脑上网和用手机上网的流量完全不在一个档次，我上淘宝逛了一圈，就发现已经用了5M流量……平常我每个月的流量也不过6MB而已呀……所以，如果你不是非常的有钱，最好把浏览器的图片显示和Flash显示关闭。</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/281.htm/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>我推荐的2000-3000元PPC平台智能手机</title>
		<link>http://zengrong.net/post/252.htm</link>
		<comments>http://zengrong.net/post/252.htm#comments</comments>
		<pubDate>Fri, 22 Sep 2006 01:09:52 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[应用]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.zengrong.net/?p=252</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/252.htm" title="我推荐的2000-3000元PPC平台智能手机"></a>.ttd{ border-top-width: 1px; border-top-style: solid; border-top-color: #000000; } #ttable{ border:3px solid black; } .STYLE1 {border-top-width: 1px; border-top-style: solid; border-top-color: #000000; font-weight: bold; } 受同事所托，帮忙挑选几款智能手机，要求： QVGA屏幕 可以读取Word等office文件 可以流畅播放QVGA视频 用触控笔操作 价格2000元左右 根据分析，对Word等office文件支持最好的当然是Window Mobile PocketPC平台，例如我的900就支持word、excel文件的编辑和PowerPoint文件的读取和播放。而要流畅播放QVGA视频、CPU频率必须在300MHZ以上，因此挑选了下面5台手机供选择： 型号 详细介绍 参考 价格 屏幕 英寸 处理器 上市 &#8230;<p class="read-more"><a href="http://zengrong.net/post/252.htm">继续阅读 &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/252.htm" title="我推荐的2000-3000元PPC平台智能手机"></a><style> .ttd{ 	border-top-width: 1px; 	border-top-style: solid; 	border-top-color: #000000; } #ttable{ 	border:3px solid black; } .STYLE1 {border-top-width: 1px; border-top-style: solid; border-top-color: #000000; font-weight: bold; } </style>
<p>受同事所托，帮忙挑选几款智能手机，要求：</p>
<ol>
<li>QVGA屏幕</li>
<li>可以读取Word等office文件</li>
<li>可以流畅播放QVGA视频</li>
<li>用触控笔操作</li>
<li>价格2000元左右</li>
</ol>
<p>根据分析，对Word等office文件支持最好的当然是Window Mobile PocketPC平台，例如我的900就支持word、excel文件的编辑和PowerPoint文件的读取和播放。而要流畅播放QVGA视频、CPU频率必须在300MHZ以上，因此挑选了下面5台手机供选择：</p>
<p><span id="more-252"></span></p>
<table id="ttable" cellpadding="0" cellspacing="0" width="600">
<tr>
<td class="STYLE1" align="center" bgcolor="#cccccc" height="60" width="53">型号</td>
<td class="STYLE1" align="center" bgcolor="#cccccc" width="40">详细介绍</td>
<td class="STYLE1" align="center" bgcolor="#cccccc" width="40">参考<br />
价格</td>
<td class="STYLE1" align="center" bgcolor="#cccccc" width="40">屏幕<br />
英寸</td>
<td class="STYLE1" align="center" bgcolor="#cccccc" width="67">处理器</td>
<td class="STYLE1" align="center" bgcolor="#cccccc" width="62">上市<br />
时间</td>
<td class="STYLE1" align="center" bgcolor="#cccccc" width="264">操作系统<br />
均为Windows Mobile for Pocket PC<br />
Phone Edition</td>
<td class="STYLE1" align="center" bgcolor="#cccccc" width="60">推荐度</td>
</tr>
<tr>
<td class="ttd" align="center">夏新E850</td>
<td class="ttd" align="center"><a href="http://phone.younet.com/files/15/15319.html" target="_blank">查看</a></td>
<td class="ttd" align="center">2600</td>
<td class="ttd" align="center">2.4</td>
<td class="ttd" align="center">312MHz</td>
<td class="ttd" align="center">2006年05月</td>
<td class="ttd">Windows Mobile 5.0<br />
（最新的操作系统，自带的word、excel的功能比2003版更强）</td>
<td class="ttd">★★★</td>
</tr>
<tr>
<td class="ttd" align="center">明基 P50</td>
<td class="ttd" align="center"><a href="http://phone.younet.com/files/14/14609.html" target="_blank">查看</a></td>
<td class="ttd" align="center">3000</td>
<td class="ttd" align="center">2.8</td>
<td class="ttd" align="center">416MHz</td>
<td class="ttd" align="center">2005年10月</td>
<td class="ttd">2003简体中文第一版</td>
<td class="ttd">★★★☆</td>
</tr>
<tr>
<td class="ttd" align="center">联想 ET960</td>
<td class="ttd" align="center"><a href="http://phone.younet.com/files/14/14360.html" target="_blank">查看</a></td>
<td class="ttd" align="center">3000</td>
<td class="ttd" align="center">2.8</td>
<td class="ttd" align="center">312Mhz</td>
<td class="ttd" align="center">2004年</td>
<td class="ttd">2003简体中文第二版</td>
<td class="ttd">★★</td>
</tr>
<tr>
<td class="ttd" align="center">联想 ET280</td>
<td class="ttd" align="center"><a href="http://phone.younet.com/files/14/14148.html" target="_blank">查看</a></td>
<td class="ttd" align="center">2000</td>
<td class="ttd" align="center">3.0</td>
<td class="ttd" align="center">300MHz</td>
<td class="ttd" align="center">2004年08月</td>
<td class="ttd">2003简体中文第一版</td>
<td class="ttd">★</td>
</tr>
<tr>
<td class="ttd" align="center">多普达 818</td>
<td class="ttd" align="center"><a href="http://phone.younet.com/files/14/14431.html">查看</a></td>
<td class="ttd" align="center">2600</td>
<td class="ttd" align="center">2.8</td>
<td class="ttd" align="center">416MHz</td>
<td class="ttd" align="center">2004年12月</td>
<td class="ttd">2003简体中文第二版</td>
<td class="ttd">★★☆</td>
</tr>
<tr>
<td class="ttd" align="center">多普达 699</td>
<td class="ttd" align="center"><a href="http://phone.younet.com/files/14/14860.html">查看</a></td>
<td class="ttd" align="center">2500</td>
<td class="ttd" align="center">3.5</td>
<td class="ttd" align="center">520MHz</td>
<td class="ttd" align="center">2005年</td>
<td class="ttd">2003简体中文第二版</td>
<td class="ttd">★★★★</td>
</tr>
</table>
<p>===============================================================</p>
<p>在2000元这个价位，可以买到的符合以上条件的手机确实少之又少，因此我将价位定在了2000-3000，这样以来选择的余地就大了许多。</p>
<p>如果是我自己来挑选，我应该会选择夏新E850（当然要试用一下才决定），支持一下国货。 <img src='http://zengrong.net/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/252.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>多普达900与4GB SD卡的故事</title>
		<link>http://zengrong.net/post/247.htm</link>
		<comments>http://zengrong.net/post/247.htm#comments</comments>
		<pubDate>Mon, 18 Sep 2006 14:42:54 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[应用]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.zengrong.net/?p=247</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/247.htm" title="多普达900与4GB SD卡的故事"></a>一直担心900不支持4GB的卡，在论坛和友人上搜了搜，有前辈说可以支持，就去淘宝上买了个kingmax的，520元。 拿回来一试，确实支持的不错。可是当我通过读卡器向卡里拷大文件的时候，问题发生了。 我用的是SSK飚王18合一读卡器，复制小文件没有问题。可是当我复制一个400MB的电影时，到200MB左右就复制失败了，提示“参数不正确”。 我开始怀疑计算机问题，换了台计算机，问题依旧。 怀疑读卡器的问题，找同事借了个读卡器，她的更加厉害，连文件都不能复制，直接提示“参数不正确”。 这样可以大致确定是读卡器不支持（虽然读卡器可以正确识别出卡的容量），打电话给kingmax的客服，证实了我这个猜测。 于是带着卡杀向电脑城，去买新的读卡器。让js帮我做了个1G左右的压缩包，拷贝没问题。30块钱就搞定了。 需要注意的是，并不一定越贵的读卡器越好。我先测试的一个80块的20合一读卡器（USB2.0），就不支持拷贝文件。如果大家要买读卡器，一定要带上卡去测试，并复制1GB以上的文件试试（大家在900上播放的视频没有超过1G的吧 :em25:）]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/247.htm" title="多普达900与4GB SD卡的故事"></a><p>一直担心900不支持4GB的卡，在<a href="http://bbs.pdafans.com" target="_blank">论坛</a>和<a href="http://www.younet.com" target="_blank">友人</a>上搜了搜，有前辈说可以支持，就去淘宝上买了个kingmax的，520元。</p>
<p>拿回来一试，确实支持的不错。可是当我通过读卡器向卡里拷大文件的时候，问题发生了。</p>
<p>我用的是SSK飚王18合一读卡器，复制小文件没有问题。可是当我复制一个400MB的电影时，到200MB左右就复制失败了，提示“参数不正确”。</p>
<p>我开始怀疑计算机问题，换了台计算机，问题依旧。</p>
<p>怀疑读卡器的问题，找同事借了个读卡器，她的更加厉害，连文件都不能复制，直接提示“参数不正确”。</p>
<p>这样可以大致确定是读卡器不支持（虽然读卡器可以正确识别出卡的容量），打电话给kingmax的客服，证实了我这个猜测。</p>
<p>于是带着卡杀向电脑城，去买新的读卡器。让js帮我做了个1G左右的压缩包，拷贝没问题。30块钱就搞定了。</p>
<p><a href="/wp-content/uploads/2006/09/4gsd.jpg" target="_blank"><img src="/wp-content/uploads/2006/09/4gsd_s.jpg" alt="卡和读卡器" /></a></p>
<p><strong>需要注意的是，并不一定越贵的读卡器越好。我先测试的一个80块的20合一读卡器（USB2.0），就不支持拷贝文件。如果大家要买读卡器，一定要带上卡去测试，并复制1GB以上的文件试试（大家在900上播放的视频没有超过1G的吧 :em25:）</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/247.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>入手多普达900</title>
		<link>http://zengrong.net/post/245.htm</link>
		<comments>http://zengrong.net/post/245.htm#comments</comments>
		<pubDate>Fri, 01 Sep 2006 09:47:53 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[听说]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.zengrong.net/?p=245</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/245.htm" title="入手多普达900"></a>SX1用了两年，现在换成多普达900. 这个巨无霸式的东东已经不能算“手机”了，也许称它为“带电话功能的PDA更好些”。 我用过的所有手机： 爱立信T18 &#8211; 诺基亚8210 &#8211; 诺基亚8250 &#8211; 波导（型号不明） &#8211; 西门子SX1 &#8211; 多普达575 &#8211; 多普达900 SX1之前的手机已经找不到了:em26: 下面是SX1、575和900的合影 :em52:]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/245.htm" title="入手多普达900"></a><p>SX1用了两年，现在换成多普达900.</p>
<p>这个巨无霸式的东东已经不能算“手机”了，也许称它为“带电话功能的PDA更好些”。</p>
<p>我用过的所有手机：</p>
<p>爱立信T18 &#8211; 诺基亚8210 &#8211; 诺基亚8250 &#8211; 波导（型号不明） &#8211; 西门子SX1 &#8211; 多普达575 &#8211; 多普达900</p>
<p>SX1之前的手机已经找不到了:em26: 下面是SX1、575和900的合影 :em52:</p>
<p><a href="/wp-content/uploads/2006/09/sx1_575_900.jpg" target="_blank"><img src="/wp-content/uploads/2006/09/sx1_575_900_s.jpg" alt="合影" width="531" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/245.htm/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>在手机上发的第一篇BLOG</title>
		<link>http://zengrong.net/post/82.htm</link>
		<comments>http://zengrong.net/post/82.htm#comments</comments>
		<pubDate>Fri, 24 Feb 2006 10:42:53 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[听说]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.zengrong.net/82/</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/82.htm" title="在手机上发的第一篇BLOG"></a>去opera主页下载了opera mini装到了我的SX1上，发现这个小东西挺好用。支持我BLOG的大部分功能，后台的JS也支持，真的很意外。 不过，要不断在n多按钮中切换，确实是辛苦的事：)]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/82.htm" title="在手机上发的第一篇BLOG"></a><p>去opera主页下载了<a href="http://mini.opera.com" target="_blank">opera mini</a>装到了我的SX1上，发现这个小东西挺好用。支持我BLOG的大部分功能，后台的JS也支持，真的很意外。<br />
不过，要不断在n多按钮中切换，确实是辛苦的事：)</p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/82.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash lite 2.0 不支持SX1</title>
		<link>http://zengrong.net/post/71.htm</link>
		<comments>http://zengrong.net/post/71.htm#comments</comments>
		<pubDate>Fri, 06 Jan 2006 02:23:07 +0000</pubDate>
		<dc:creator>zrong</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.zengrong.net/?p=71</guid>
		<description><![CDATA[<a href="http://zengrong.net/post/71.htm" title="Flash lite 2.0 不支持SX1"></a>今天去Macromedia网站下载了Flash lite2.0，很可惜的是，它并不支持我的西门子SX1，QD等手机也应该不会支持，而7610等symbian7.0系统手机则可以安装。 顺便说一句： Adobe Reader LE for symbian官方下载地址： http://www.adobe.com/products/acrobat/readerforsymbian.html]]></description>
			<content:encoded><![CDATA[<a href="http://zengrong.net/post/71.htm" title="Flash lite 2.0 不支持SX1"></a><p>今天去Macromedia网站下载了Flash lite2.0，很可惜的是，它并不支持我的西门子SX1，QD等手机也应该不会支持，而7610等symbian7.0系统手机则可以安装。</p>
<p>顺便说一句：<br />
Adobe Reader LE for symbian官方下载地址：<br />
http://www.adobe.com/products/acrobat/readerforsymbian.html<a href="http://www.adobe.com/products/acrobat/readerforsymbian.html" target="_blank"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://zengrong.net/post/71.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

