自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

蓝蓝的天

蓝蓝的天,白云朵朵。 White clouds in the blue sky.

  • 博客(7)
  • 资源 (22)
  • 收藏
  • 关注

转载 Java中接口里定义的成员变量

<br />在interface里面的变量都是public static final 的。所以你可以这样写:<br />public static final int i=10;<br />或则<br />int i=10;(可以省略掉一部分)<br />注意在声明的时候要给变量赋予初值<br />解释:<br />首先你要弄清接口的含义.接口就是提供一种统一的’协议’,而接口中的属性也属于’协议’中的成员.它们是公共的,静态的,最终的常量.相当于全局常量.<br />抽象类是不’完全’的类,相当于是接口和

2011-02-16 23:50:00 49787 5

原创 MP3文件的ID3 Tag是什么?

What is ID3 TagID3 is a very popular audio file data tagging format in active use by software and hardware developers around the world. ID3 tags are supported in software such as iTunes, Windows Media Player, Winamp, YME, MusicMatch and hardware players li

2011-02-15 17:46:00 3188

原创 Android官方在线API网址

<br />如题:<br />http://www.ideasandroid.com/android/sdk/docs/reference/packages.html<br /> 

2011-02-15 16:57:00 6644

转载 android widget桌面时钟

import java.util.Date; import android.appwidget.AppWidgetManager; import android.appwidget.AppWidgetProvider; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Matri

2011-02-14 14:09:00 5050 2

原创 Android更新下载进度条

<br />下载文件会阻塞UI主线程,所以需要new一个新线程来执行下载操作,通过handler执行更新UI进度条操作。代码如下:<br />public class AndroidTest extends Activity { private static final String TAG = "AndroidTest"; private ProgressBar progressBar = null; private Button startButton = null;

2011-02-14 10:58:00 15331 2

转载 获取屏幕硬件分辨率方法

TextView tv=(TextView)findViewById(R.id.tv); DisplayMetrics dm=new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(dm); float width=dm.widthPixels*dm.density; float height=dm.heightPixels*dm.d

2011-02-14 10:43:00 3768 1

原创 Android Interview Questions & Answers

Describe the APK format.The APK file is compressed the AndroidManifest.xml file, application code (.dex files), resource files, and other files. A project is compiled into a single .apk file.What is an action?A description of something that an Intent sende

2011-02-14 10:01:00 4888 8

SGP.02_v3.2_updated.pdf

SGP.02 V3.2 更新版,比原来的SGP.02 V3.2版本多了一页内容。 Remote Provisioning Architecture for Embedded UICC Technical Specification Version 3.2 27 June 2017

2020-08-17

《音视频开发进阶指南:基于Android与iOS平台的实践》第4章AudioPlayer的Android Studio工程源码

《音视频开发进阶指南:基于Android与iOS平台的实践》第4张AudioPlayer的源码,由原作者的eclipse工程移植到Android Studio工程。在Android Studio 3.2,API 28编译通过。至于测试mp3文件,需要自己push到/sdcard/131.mp3

2019-04-26

安卓爱笑话ijoke

本软件是一款分类笑话阅读软件,提供七大类笑话,总数两万篇。 ------ 免费阅读,绝无广告 ------ 可随意调整字体大小和颜色,并能自定义背景图片,颜色,设置为最适合自己的画面,为我所悦。 还能通过短信,微博,邮件等分享给好友。 是您休闲怡情,解压除闷的必备软件。 快来看吧,七大类,两万条笑话总有你喜欢的。

2015-08-04

Google Play services com.google.android.gms-7.8.93_(2104405-448)

关于Google Play services的各个分支介绍(MX5一定要安装XXXXXX-448分支) 要想使用google play, google map等google应用,就必须安装Google Play Service,但Google Play Service有太多分支了,最近终于搞明白各个分支代表什么。 版本号最后三位(2104405-XYZ)分别表示Android版本,cpu的arm系列,屏幕密度(DPI)。 下面是具体分支介绍: Notes / What's New Uploader's notes: To figure out the right version of Google Play services for your Android device, go to Settings -> Apps -> Google Play services, and look at the last 3 numbers in the parentheses. You'll see something like -XYZ where: 1.第一位X * X defines Android version: 0 for Android =5.0 // 4和7表示Android5.0及以上 8 for Android TV // 8表示Android电视应用 2.第二位Y * Y defines CPU architecture: 1 for armeabi 3 for armeabi-v7a // 32位版本 4 for arm64-v8a // 64位v8版本,MX5必须是这个 7 for x86 // x86主要是对intel cpu来说的 3.第三位Z * Z defines DPI: 0 for universal 2 for 160 4 for 240 6 for 320 8 for 480 // MX5选这个就行了 Notes: It seems that -7YZ builds became -4YZ with Google Play services 6.5. If you were on -7YZ before, you should now install -4YZ. Looks like -8YZ builds are for Android TV. Examples: -014 for Android <5.0 armeabi CPU 240 DPI device -438 for Android 5.0+ armeabi-v7a CPU 480 DPI device -876 for Android TV x86 CPU 320 DPI device 国内用户可以直接从以下镜像网站下载最新到Google Play Service http://www.apkmirror.com/apk/google-inc/google-play-services/ 目前最新版本是Google Play services 7.8.93 MX5用户可以安装以下分支: Google Play services 7.8.93 (2104405-448) http://www.apkmirror.com/apk/google-inc/google-play-services/google-play-services-7-8-93-2104405-448-android-apk-download/ 另外,安装后好需要禁止系统自带【应用中心】自动安装更新,可以设置面流量更新,但不要设置“静默安装更新包”,否则新版本发布后会自动更新成应用中心的最新版本,而最新版本的后三位可能不是你想要的分支,这时候就会导致弹出提示架构不符等。

2015-07-28

安卓版爱笑话

安卓版爱笑话,目前最全的笑话,八大类,两万多篇。

2013-10-18

记账精灵家庭收支管理

本人开发的家庭财务管理软件。 适用于家庭,个人,小企业的财务支出和管理。 可以设置财务年度,分类统计,还可以按照年,月,周,日统计。

2012-09-09

android个税通2.0

软件介绍: 1.增加了按照新个税起征点3500元的个税计算方法,可以选择2000或3500元两个不同的起征点。 2.增加了界面切换时保存当前值的处理,再次进入此画面时还显示上次的值。 3.增加了“计算个税”等按钮与其他控件的距离,便于操作。 --------------------------------------------- 1. 本软件可以计算个人所得税,偶然所得税,单位支出总额 2. 根据税前收入计算税后收入,在税前月入输入框中点击,则按钮自动变为“计算税后”,此时为根据税前计算税后收入。 3. 根据税后收入反推税前收入,在税后月入输入框中点击,则按钮自动变为“反推税前”,此时为根据税后反推税前收入。 4. 输入税前收入时,缴费基数自动更新。 5. 输入社保缴费基数时,医疗缴费基数自动更新。 6. 医疗缴费基数可单独修改。 7. 个人所得税计算依据2008年3月发布的9级累进税率标准,起征点为2000元。

2011-07-06

android个税计算器

android个税计算器apk文件,适用于所有android机型。

2011-06-20

原创android界面效果全汇总

原创android界面效果全汇总,非常棒的界面特效大全。

2011-06-13

mp4info查看工具

查看mp4文件信息的工具,可以显示mp4文件的各个atom的组成,文件信息。

2011-06-07

Inside_the_Android_Application_Framework

Inside_the_Android_Application_Framework

2010-12-09

Filthy Rich Android Clients

介绍android UI的一个英文文档,包括阴影的设置等

2010-12-02

android 天气预报软件

简介:实现国内所有省会和大部分地级市,以及部分县区的天气查询,可以查询四天的天气情况。 1.用户可以设置每次默认查询的城市。 2.支持多中英文界面 3.支持字体大小,颜色的设置。 4.简单易用,查询天气方便快捷。

2010-11-19

android开发培训课件ppt

传智播客的android开发培训课件PPT文档。 全面介绍了android开发的基础知识,包括android的四大组件,SQLite等。

2010-11-14

Android_2.2_开发环境配置详解

Android_2.2_开发环境配置详解

2010-10-16

Android秒表计时器安装文件

简介:计时器小程序——秒表计时器,程序界面简洁,只有一个时间显示区域和两个图片按钮,一个按钮是开始/暂停,另一个按钮是停止。 1.功能: (1)根据用户设置.按0.1秒或1秒为最小单位计时,满60秒进为分钟,最大单位是分钟。 默认分钟为两位,超过两位后自动变为三位分钟。 (2).显示格式为 1.最小计时单位为0.1秒时,显示为:分钟:秒:0.1秒。例如:02:07:5 2.最小计时单位为1秒时,显示为:分钟:秒。例如:02:07 2.操作步骤 (1).按开始按钮,开始计时,此时开始按钮变为暂停按钮 (2).按暂停按钮,暂停计时,显示当前的计时时间 (3).按停止按钮,停止计时,暂停按钮恢复为开始按钮,时间显示为:00:00:00 (4)按menu键弹出menu菜单,第一项为设置计时单位,含有子菜单,可以设置计时单位为1秒或者为0.1秒。 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/ameyume/archive/2010/08/08/5797161.aspx

2010-08-08

dell OptiPlex GX620 win2000系统的显卡驱动

dell OptiPlex GX620 win2000系统的显卡驱动

2008-08-25

dell OptiPlex GX620 win2000系统的声卡驱动

dell OptiPlex GX620 win2000系统的声卡驱动

2008-08-25

dell OptiPlex GX620 win2000系统的网卡驱动

dell OptiPlex GX620 win2000系统的网卡驱动

2008-08-25

xml指南

包括xml基础,xml高级部分,实例/测验,资源四个部分。<br>是学习xml入门的好文档,简单易学。

2008-05-26

Linux高级技巧集

Linux高级技巧集

2008-05-14

VB6.0做的学生管理系统

一个用VB6.0做的简单的学生管理系统,使用access数据库。

2008-05-14

空空如也

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

TA关注的人

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