﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
  <channel>
    <title>fanzehua最新分类"Android"博客文章</title>
    <link>http://www.fanzehua.com/blog/category_11_1.html</link>
    <description>最新博客文章</description>
    <generator>fanzehua</generator>
    <item>
      <title>Android 编程下小米2 真机调试中存在的问题及其解决方法</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description> 小米2 手机虽然在【设置】&amp;#8594;【全部设置】&amp;#8594;【开发者选项】中为开发人员提供了【USB 调试】的模式，但我相信很多开发者和我一样，在电脑上安装好驱动，在手机上开启【USB 调试】后去 Eclipse 的 Devices 选项卡下查看设备信息或者在命令行下执行：adb devices 查看设备信息的时候，结果并不会像我们所期待的那样显示设备信息。小米2 提供了另一种方法来开启 ......</description>
      <pubDate>2013/4/20 14:10:30</pubDate>
    </item>
    <item>
      <title>[INSTALL_PARSE_FAILED_NO_CERTIFICATES]解决方法</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description> 把别人的apk签上自己的debug签名，安装的时候出现[INSTALL_PARSE_FAILED_NO_CERTIFICATES]。 各种百度google都说是因为没有签名，百思不得其解。 用jarsigner -verify -verbose -certs abc.apk查看签名信息发现总是出现[CertPath未验证 null]， 也不晓得原因。 后来看到某大神的文章后发现可能是java1.......</description>
      <pubDate>2013/4/17 0:31:41</pubDate>
    </item>
    <item>
      <title>Android系统级开发，apktool无法反编译</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description> 今天本来想修改S5830下拉菜单栏的透明 用apktool发现一直无法编译，后来发现编译普通的apk就正常编译系统的apk就会出现如下错误 Exception in thread "main" brut.androlib.AndrolibException: brut.directory.PathN otExist: apktool.yml at brut.androlib.Androlib.r......</description>
      <pubDate>2013/4/15 16:24:14</pubDate>
    </item>
    <item>
      <title>android---Text中电话号码、网址自动链接</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description>假若TextView文本中有电话号码或者网址，我想通过点击电话号码或者网址就能实现打电话或者打开网页，android中已经为我们提供这样的属性和方法进行设置，大体可以分为三种：  1、设置TextView的autoLink属性：他有几个值all、web、phone、email等。当文中有这几种类型的文本值时，点击它将进入网页、打电话或者email的activity，这是最简单的方法  2、在文本值......</description>
      <pubDate>2011/3/19 6:57:00</pubDate>
    </item>
    <item>
      <title>Android手机的上网设置与彩信设置</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description>Android手机的功能多数要依靠网络实现，从常用的彩信，到浏览网页可能需要的GPRS、WCDMA，都需要进行设置后才能使用。 不同的网络运营商设置不尽相同，但准备工作一致。先从准备工作做起。在待机的桌面情况下－菜单－设置-无线控件－移动网络设置－接入点名称步骤1-2步骤3-4一、中国移动设置完成了准备工作，先从移动的网络开始进行讲解。在接入点名称界面按下Menu键，选择 &amp;#8220;新接入点名......</description>
      <pubDate>2011/1/29 14:04:08</pubDate>
    </item>
    <item>
      <title>android手势翻页效果</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description>在android中实现手势翻页效果，主要用到ViewFlipper和GestureDetector. ViewFlipper变化当前显示内容,GestureDetector监听手势. 用于多页的展示非常酷. 以下是简略说明： 首先创建工程：TestFlip,创建主Activity：TestFlip. 在res/layout/main.xml中添加flipper信息，如下： Java代码 &amp;lt;?......</description>
      <pubDate>2010/12/11 21:47:15</pubDate>
    </item>
    <item>
      <title>android ListView详解</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description>在android开发中ListView是比较常用的组件，它以列表的形式展示具体内容，并且能够根据数据的长度自适应显示。抽空把对ListView的使用做了整理，并写了个小例子，如下图。列表的显示需要三个元素：1．ListVeiw 用来展示列表的View。2．适配器用来把数据映射到ListView上的中介。3．数据具体的将被映射的字符串，图片，或者基本组件。根据列表的适配器类型，列表分为三种，Arra......</description>
      <pubDate>2010/11/27 13:52:36</pubDate>
    </item>
    <item>
      <title>APK反编译利器Apktool</title>
      <author>fanzehua</author>
      <category>Android</category>
      <description>说起APK的汉化，目前大部分教程都是让用Hex Workshop或者Android ResEdit来做。但是实际操作后，就会发现：1、Hex Workshop操作繁琐，经常出现搜不到想要修改的字符的情况；2、Android ResEdit简单用用可以，修改稍微复杂一点就会出现整条整条丢字符串的情况；并且新内容不能比原内容长——谁能保证我的本地化语言就一定比原来的短呢？现在好了，老外写的《andro......</description>
      <pubDate>2010/11/23 19:34:32</pubDate>
    </item>
  </channel>
</rss>