2014年2月28日

GifView——Android显示GIF动画

摘要: GifView.jar下载地址:http://pan.baidu.com/s/1sjJaW7V简介:android中现在没有直接显示gif的view,只能通过mediaplay来显示,且还常常不能正常显示出来,为此写了这个gifview,其用法和imageview一样使用方法:1-把GifView.jar加入你的项目。2-在xml中配置GifView的基本属性,GifView继承自View类,和Button、ImageView一样是一个UI控件。如:[xhtml]view plaincopy3-在代码中配置常用属性:[java]view plaincopy//从xml中得到GifView的句柄 阅读全文

posted @ 2014-02-28 17:57 clarenceV1 阅读(614) 评论(0) 推荐(0) 编辑

使用系统自带的下载功能

摘要: package com.hebaijun.downloadtest;import java.io.File;import java.io.UnsupportedEncodingException;import java.net.URLEncoder;import android.app.Activity;import android.app.DownloadManager;import android.app.DownloadManager.Request;import android.content.BroadcastReceiver;import android.content.Conte 阅读全文

posted @ 2014-02-28 11:50 clarenceV1 阅读(285) 评论(0) 推荐(0) 编辑

自定义通知栏

摘要: //实例化一个notification Notification notification = new Notification(R.drawable.ic_launcher, "tick", System.currentTimeMillis()); //不能手动清理 notification.flags= Notification.FLAG_NO_CLEAR; //添加音乐 ... 阅读全文

posted @ 2014-02-28 11:02 clarenceV1 阅读(423) 评论(0) 推荐(0) 编辑

导航