自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(17)
  • 资源 (1)
  • 收藏
  • 关注

原创 Parcelable 的简单实现

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/80047886Parcelable :package com.example.f405.test;import android.os.Parcel;import android.os.Parcelable;/** * Created by F4...

2018-04-23 11:15:39 161

原创 补间动画/View动画_代码

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/80017039package com.example.f405.animtest;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import and...

2018-04-20 12:25:32 154

原创 AutoCompleteTextView可实现 输入字符,显示搜索历史记录

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/80015433package com.example.f405.autocompletetextview;import android.support.v7.app.AppCompatActivity;import android.os.Bundle...

2018-04-20 10:43:25 498

原创 音乐播放的简单实现——Service,SeekBar

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/79993530接口:package com.example.f405.musictest;/** * Created by F405 on 2018/4/18. */public interface IMusicService { pu...

2018-04-18 17:14:15 721

原创 内容解析者,获取联系人和短信数据

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/79981352package com.example.f405.contentresolvertest;import android.Manifest;import android.content.ContentValues;import andr...

2018-04-17 21:42:53 1745

原创 更换头像的简易实现_拍摄显示,从相册选择

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/79963508清单文件注册:<!--配置内容提供者,注意:authorities,uri的权限--><provider android:authorities="com.example.f405.cameraphotoalbum"...

2018-04-16 17:31:03 515

原创 接口实现服务Service_暴露需要暴露的方法

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79960181服务Service类:    只有绑定服务时,取消绑定,会销毁服务。混合开启服务,不会package com.example.f405.iserviceaidltest.utils;import android.app....

2018-04-16 14:31:02 3460 2

原创 多媒体_音频MediaPlayer和视频VideoView,setMediaController

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/79941385package com.example.f405.mediatest;import android.Manifest;import android.content.pm.PackageManager;import android.m...

2018-04-14 16:22:15 381

原创 通知栏Notification

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/79937711 intent = new Intent(this, Main2Activity.class);// 跳转界面PendingIntent pendingIntent = PendingIntent.getActivities(this,0,...

2018-04-14 10:44:02 98

原创 IntentService

转载请注明出处(万分感谢!): https://blog.csdn.net/weixin_40790006/article/details/79934804package com.example.f405.servicetest.utils;import android.app.IntentService;import android.content.Intent;import andro...

2018-04-13 21:25:50 110

原创 服务Service_绑定服务bindService_通知栏Notification

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79934324服务:实现通知栏package com.example.f405.servicetest.utils;import android.app.Notification;import android.app.Pending...

2018-04-13 20:45:22 2074

原创 ViewPager_RadioButton监听设置

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79933503// RadioGroupgroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { @Override pu...

2018-04-13 19:26:47 218

原创 Broadcast的实现_简单的通知

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79915466帮助类:通知:package com.example.f405.broadcasttest.utils;import android.app.Notification;import android.app.Notifi...

2018-04-12 16:13:32 410

翻译 任何地方获取Context

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79899548帮助类:package com.example.f405.xmlserializable.utils;import android.app.Application;import android.content.Cont...

2018-04-11 17:06:09 131

原创 XML_SAX解析

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79899356继承DefaultHandler类——重写方法,startDocument,startElement,characters,endElement,endDocument——XMLReader.setC...

2018-04-11 16:59:47 87

原创 生成/解析XML文件

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79896527事件类型——根节点——节点package com.example.f405.xmlserializable;import android.os.Handler;impo...

2018-04-11 14:49:40 270

原创 APP引导界面_ViewPager和小圆点_SharedPreferences

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/weixin_40790006/article/details/79821059资源 文件:full:empty:XML 文件:帮助类 文件:Adapter                                                                java 文件:on...

2018-04-04 18:53:54 131

手势缩放图片

自定义图片控件,控件带有通过手势进行智能缩小放大,即,可以动态获取手势的点击,形成的放大

2018-04-25

空空如也

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

TA关注的人

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