Android - Data Backup Tutorial

Android allows you to backup your application data to remote cloud storage, in order to provide a restore po

173   0   0   0

Android Apk自动更新service

Android Apk自动更新service Android sdk version 9以上就有DownManager 使用DownManager,我们可以很简便的在各个安卓机子上升级自家的应用 本例写了一

156   0   0   0

邮件服务原理及架构

架构图: 邮件服务原理及架构 (linuxcast 笔记) 电子邮件基本概念: MUA(Mail User Agent) 接收邮件所使用的邮件客户端,使用IMAP或POP3协议与服务

205   0   0   0

Android - Image Switcher Tutorial

Sometimes you dont want an image to appear abruptly on the screen, rather you want to apply some kind of ani

144   0   0   0

Android - Gestures Tutorial

Android provides special types of touch screen events such as pinch , double tap, scrolls , long presses and

153   0   0   0

Android - Image Effects Tutorial

Android allows you to manipulate images by adding different kinds of effects on the images. You can easily a

231   0   0   0

Android - Wi-Fi Tutorial

Android allows applications to access to view the access the state of the wireless connections at very low l

215   0   0   0

Android - Widgets Tutorial

A widget is a small gadget or control of your android application placed on the home screen. Widgets can

209   0   0   0

Android系列---JSON数据解析

上篇随笔详细介绍了三种解析服务器端传过来的xml数据格式,而对于服务器端来说,返回给客户端的数据格式一般分为html、xml和json这三种格式,那么本篇随笔将讲解一下json这个知识点,包括如何通过json-lib

138   0   0   0

Android应用自动更新功能的代码实现

由于Android项目开源所致,市面上出现了N多安卓软件市场。为了让我们开发的软件有更多的用户使用,我们需要向N多市场发布,软件升级后,我们也必须到安卓市场上进行更新,给我们增加了工作量。因此我们有必要给我们的And

159   0   0   0

android自定义button样式

在Android开发应用中,默认的Button是由系统渲染和管理大小的。而我们看到的成功的移动应用,都是有着酷炫的外观和使用体验的。因此,我们在开发产品的时候,需要对默认按钮进行美化。在本篇里,笔者结合在应用开发中的

175   0   0   0

Log图文详解(Log.v,Log.d,Log.i,Log.w,Log.e)的用法

在调试代码的时候我们需要查看调试信息,那我们就需要用Android Log类。android.util.Log常用的方法有以下5个:Log.v() Log.d() Log.i() Log.w() 以及 Log.e()

158   0   0   0

Android Studio如何发布APK

(1)Android Studio菜单Build->Generate Signed APK(2)弹出窗口(3)创建密钥库及密钥,创建后会自动选择刚创建的密钥库和密钥(已拥有密钥库跳过) 点击Create new..

182   0   0   0

AsyncTask的用法

在开发Android应用时必须遵守单线程模型的原则: Android UI操作并不是线程安全的并且这些操作必须在UI线程中执行。在单线程模型中始终要记住两条法则:1. 不要阻塞UI线程2. 确保只在UI线程中访问An

168   0   0   0

Android控件之SeekBar

1 SeekBar简介SeekBar是进度条。我们使用进度条时,可以使用系统默认的进度条;也可以自定义进度条的图片和滑块图片等。2 SeekBar示例创建一个activity,包含2个SeekBar。第1个SeekB

151   0   0   0

用Fragment实现如新浪微博一样的底部菜单的切换

像我这个有强迫症的人来说,自从TabActivity抛弃之后,再使用看到一个个警告和一条条划着的横线,心里很不舒服,现在终于下定决心用Fragment来替换掉TabActivity了!我的研究成果如下:首先是Main

232   0   0   0
返回顶部 留言