自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

张亚运的专栏

Technology changes life,Code writes everything.

  • 博客(12)
  • 资源 (59)
  • 问答 (1)
  • 收藏
  • 关注

原创 Android--操作联系人的ContentProvider

1.main.xml代码如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="verti

2015-02-13 15:37:21 990

原创 Android--数据库操作辅助类:SQLiteOpenHelper

1.MyDatabaseHelper.java代码如下: package org.lxh.demo; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; import

2015-02-12 20:01:01 1390

原创 FileOutputStream类实例

1.继承结构: java.lang.Object    ↳ java.io.OutputStream      ↳ java.io.FileOutputStream .java程序如下: package org.lxh.demo; import java.io.FileNotFoundException; i

2015-02-12 15:54:03 1431 1

原创 LayoutInflater类使用实例

用于构建复杂的Dialog显示界面 main.xml代码如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:o

2015-02-08 11:07:17 1125

原创 ScrollView动态添加组件

main.xml代码如下: <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/myscroll

2015-02-07 10:50:20 3051 1

原创 Android--切换屏幕方向

main.xml代码: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"

2015-02-06 11:09:11 1431 1

原创 Java--ByteArrayInputStream和ByteArrayOutStream

代码如下: import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; public class ByteArrayDemo01 { public static void main(String args[]){ String str="

2015-02-04 14:31:24 2116

原创 Java 线程启动(实现Runnable接口)

程序如下: class ThreadDemo1 implements Runnable{//实现Runnable接口 private String name; private int time; public ThreadDemo1(String name,int time){ this.name=name; this.time=time; } public void

2015-02-04 14:13:49 1288

原创 Android--网络通信(读取网络图片的示例)

.xml代码如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" >

2015-02-04 13:08:51 1141

原创 Java--Timer类研究

Timer类是一种线程设施,可以用来实现在某一个时间或者某一段时间后安排某一个任务执行一次或定期重复执行。该功能要与TimerTask 配合使用。TimerTask类用来实现由Timer安排的一次或重复执行的某一个任务。 下面通过一个例子演示Timer和TimerTask类的使用。程序的主要功能是定时打印系统的当前时间。 1.建立TimerTask的子类: import java.u

2015-02-03 16:26:53 1064 2

原创 Android--声音服务(AudioManager)

main.xml代码如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertica

2015-02-03 11:44:17 1037

原创 JAVA--Runtime类研究

RunTime类代表Java程序的运行时环境,每一个Java程序都有一个与之对应的Runtime实例,应用程序通过该对象与运行时环境相连,应用程序不能创建自己的Runtime实例,但可以通过getRuntime()方法获得与之关联的Runtime对象。 1.Runtime代表Java程序的运行时环境,可以访问JVM的相关信息,如处理器数量,内存信息。 例如如下代码: public class

2015-02-02 18:28:01 1195

Android美团加载提示动画效果

Android美团加载提示动画效果,欢迎关注我的博客:http://blog.csdn.net/yayun0516

2015-09-08

android上拉加载,下拉刷新listview

android上拉加载,下拉刷新listview,可以关注我的博客,上面有介绍使用的文章。http://blog.csdn.net/yayun0516/article/details/48212987

2015-09-05

Android App引导页面效果实现

Android App引导页面效果实现 欢迎访问我的博客:http://blog.csdn.net/yayun0516

2015-08-29

ListView多选-点餐系统

ListView多选-点餐系统 欢迎关注我的博客,上面有博文介绍http://blog.csdn.net/yayun0516

2015-08-29

slidebutton -滑动开关

slidebutton -滑动开关-关注我的博客:http://blog.csdn.net/yayun0516

2015-08-24

ripple-effect android eclipse 为控件增加涟漪效果

ripple-effect android eclipse 为控件增加涟漪效果 可以关注我的博客: http://blog.csdn.net/yayun0516 上面有文章介绍使用方法。谢谢

2015-08-23

android-短信验证码截取自动填入源码

android-短信验证码截取自动填入源码 关注我的博客:http://blog.csdn.net/yayun0516 上面有文字介绍方法。

2015-08-16

android 截取短信验证码自动输入Demo

android 截取短信验证码自动输入Demo 关注我的微博:http://blog.csdn.net/yayun0516 上面有文章介绍哦!

2015-08-16

Android二维码扫描识别-二维码生成实例demo

Android二维码扫描识别-二维码生成实例demo 我的博客有文字介绍:http://blog.csdn.net/yayun0516

2015-08-14

android源码-ViewPager实现微信页面切换效果

android源码-ViewPager实现微信页面切换效果 博客地址: 欢迎关注我!

2015-07-24

Android源码--基于Baas上拉加载、下拉刷新

Android源码--基于Baas上拉加载、下拉刷新 文章地址:http://blog.csdn.net/yayun0516/article/details/47017535 喜欢的朋友关注我

2015-07-23

GridView长按删除

GridView长按删除,博客地址:http://blog.csdn.net/yayun0516/,欢迎关注!

2015-06-23

android--滑动删除的ListView

android--滑动删除的ListView

2015-06-18

安卓云词典源码

安卓云词典源码,文章在http://blog.csdn.net/yayun0516

2015-06-02

Android--仿微信聊天界面

Android--仿微信聊天界面

2015-05-25

android实战DeMo--英文词典

android实战DeMo--英文词典

2015-05-19

Gson实例解析Json

Gson实例解析Json。

2015-05-18

安卓TTS语音合成

安卓TTS语音合成

2015-05-17

汉字转拼音jar包

汉字转拼音jar包

2015-05-16

安卓天气预报DEMO(API+JSON解析

安卓天气预报小DEMO 欢迎下载

2015-05-16

Android WIFI直连源码

参考博文: http://blog.csdn.net/yayun0516/article/details/51530672

2016-05-29

Android 百战经典-Android补间动画(Tween)大观园

Android 百战经典-Android补间动画(Tween)大观园,博客:http://blog.csdn.net/yayun0516

2016-03-20

Android异步请求网络图片demo

Android异步请求网络图片demo,博客地址:http://blog.csdn.net/yayun0516

2016-03-19

java模式--模板模式实例代码

java模式--模板模式实例代码,请参考我的博客:http://blog.csdn.net/yayun0516

2016-03-12

Android服务器端交互Android端代码

Android服务器端交互Android端代码,可以参考我的博客:http://blog.csdn.net/yayun0516

2016-03-12

Android服务器端交互服务器端源码

Android服务器端交互服务器端源码,可以参考我的博客:http://blog.csdn.net/yayun0516

2016-03-12

android 仿iOS弹出框效果demo

android 仿iOS弹出框效果demo 参考文章: http://blog.csdn.net/yayun0516 欢迎关注我的博客。

2015-10-29

android自定义控件-验证邮箱输入demo

android自定义控件-验证邮箱输入demo http://blog.csdn.net/yayun0516 欢迎关注我的博客。

2015-10-29

android 邮箱验证EditText DEMO源码

android 邮箱验证EditText DEMO源码 参考文章:http://blog.csdn.net/yayun0516 欢迎关注我的博客。

2015-10-29

android动画-雪花飘落demo

android动画-雪花飘落demo 参考文章:http://blog.csdn.net/yayun0516 欢迎关注我的博客。

2015-10-29

android小工具实例demo

android小工具实例demo,参考文章:http://blog.csdn.net/yayun0516 欢迎关注我的博客。

2015-10-29

android实例--窗口抖动demo

android实例--窗口抖动demo,文章参考地址:http://blog.csdn.net/yayun0516 欢迎关注我的博客。

2015-10-29

android源码--自动登录demo

android源码--自动登录demo,参考文章地址:http://blog.csdn.net/yayun0516

2015-10-28

Android源码数字液晶时钟Demo

Android源码数字液晶时钟Demo,博客地址:http://blog.csdn.net/yayun0516

2015-10-14

Android引导页Demo(第一次进入应用时加载)

Android引导页Demo(第一次进入应用时加载),文章地址:http://blog.csdn.net/yayun0516

2015-10-10

Android动画之音乐播放器效果

Android动画之音乐播放器效果,欢迎访问我的博客,有文章介绍:http://blog.csdn.net/yayun0516

2015-10-08

Android 圆形ImageView 源码Demo

Android 圆形ImageView 源码Demo,欢迎访问我的博客,上面有文章介绍: http://blog.csdn.net/yayun0516

2015-09-21

android源码 城市选择

android源码 城市选择 关注我的博客http://blog.csdn.net/yayun0516

2015-09-18

eventbus 实例android

eventbus android 欢迎关注我的博客:http://blog.csdn.net/yayun0516 有文章介绍

2015-09-14

android手电筒源码

android手电筒源码 文章地址:http://blog.csdn.net/yayun0516/article/details/48395359

2015-09-12

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除