自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(56)
  • 资源 (29)
  • 收藏
  • 关注

转载 Android 加载服务器上的图片

public Bitmap getRemoteImage(finalURL aURL) {                try {                        finalURLConnection conn = aU

2011-08-30 17:53:05 1115

转载 Android 使用模拟器远程调试

方法1By hheimbuergerHere is how I solved it on Windows. I pretty much followed Christopher's lead, but I can't edit, so a new answer w

2011-08-26 09:06:27 1879

转载 iOS 文件相关操作

// Basic File operations// Assumes the existence of a file called “testfile"// in the current directory#import int main (int a

2011-08-25 16:52:15 614

转载 Android 发送邮件

Intent(android.content.Intent.ACTION_SENDTO);emailIntent.setType("text/html");emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "

2011-08-24 14:40:14 694

转载 Android 设置飞行模式

static void toggle(Context context) { Log.i(TAG, "toggle airplane"); // We need to toggle the mode and also broadcast the f

2011-08-23 23:16:53 788

转载 Android 园角ListView

By LegendAdd the following into a file (say customshape.xml) and then place it in (res/drawable/customshape.xml)xml version="1.0" enco

2011-08-23 10:53:36 1001

转载 Android 数据无限的List实现(滚动到底部,请求数据)

By Josef当ListView到达底部时,请求更多的数据。One solution is to implement an OnScrollListener and make changes (like adding items, etc.) t

2011-08-23 10:47:14 963

原创 Windows Phone 模拟器无法保存数据库数据

Windows Phone 的数据库数据是建立在solated storage 上的,当模拟器关闭的时候这些数据时不被保存的。参考Windows Phone Emulator overview

2011-08-22 09:09:10 791

转载 Android 样式资源

Style ResourceSee alsoApplying Styles and ThemesA style resource defines the format and look for a UI.A style can be applied

2011-08-20 19:33:54 713

转载 Android 字符串资源

String ResourcesA string resource provides text strings for your applicationwith optional text styling and formatting. There are three t

2011-08-20 19:33:06 503

转载 Android 菜单资源

Menu ResourceSee alsoCreating MenusA menu resource defines an application menu (Options Menu, Context Menu, or submenu) that

2011-08-20 19:32:33 624

转载 Android 布局资源

Layout ResourceSee alsoDeclaring LayoutA layout resource defines the architecture for the UI in an Activity or a component

2011-08-20 19:31:54 539

转载 Android 绘制资源

Drawable ResourcesSee also2D GraphicsA drawable resource is a general concept for a graphic that can be drawn to the scree

2011-08-20 19:31:09 617

转载 Android 颜色状态列表资源

Color State List ResourceSee alsoColor (simple value)A ColorStateList is an object you can define in XMLthat you can apply

2011-08-20 19:25:40 544

转载 Android 动画资源

Animation ResourcesIn this documentProperty AnimationView AnimationTween animationFrame animationSee alsoView Animat

2011-08-20 19:23:34 666

转载 Android Intents and Intent Filters

Intents and Intent FiltersIn this documentIntent ObjectsIntent ResolutionIntent filtersCommon casesUsing intent matchingNote Pad

2011-08-20 19:21:59 623

转载 Android 安全和权限

Security and PermissionsIn this documentSecurity ArchitectureApplication SigningUser IDs and File AccessUsing PermissionsDeclari

2011-08-20 19:20:39 879

转载 Android 数据备份

Data BackupQuickviewBack up the user's data to the cloud in case the user loses itIf the user upgrades to a new Android-powered

2011-08-20 19:18:38 653

转载 Android 数据存储

Data StorageStorage quickviewUse Shared Preferences for primitive dataUse internal device storage for private dataUse external s

2011-08-20 19:17:58 467

转载 Android 进程和线程

Processes and ThreadsQuickviewEvery application runs in its own process and all components of the application run in thatprocess,

2011-08-20 19:16:11 539

转载 Android 蓝牙

BluetoothQuickviewAndroid's bluetooth APIs allow your application to perform wireless data transactions withother devicesIn th

2011-08-20 19:14:43 612

转载 Android App Widgets

App WidgetsQuickviewApp Widgets provide users access to some of your application featuresdirectly from the Home screen (without

2011-08-20 19:08:45 1742

原创 一个比较不错的iOS开源库

https://github.com/AlanQuatermain一个比较不错的iOS开源库

2011-08-19 11:39:13 546

转载 Android 设备管理

Device AdministrationIn this documentDevice Administration API OverviewHow does it work?PoliciesSample ApplicationDevelopi

2011-08-19 10:45:34 1350

转载 Android 创建没有标题栏的对话框

FEATURE_NO_TITLE works when creating a dialog from scratch, as in:Dialog dialog = new Dialog(context);dialog.requestWindowFeature(Window.

2011-08-19 09:30:26 1653

转载 iPhone Navigation Bar Title text color

Add a new label object to Interface Builder.    Create an IBOutlet property in Xcode and connect it up to it. In the code below I've calle

2011-08-18 21:21:58 1183

转载 Android Lazy listview

Android Development Tutorial: Asynchronous Lazy Loading and Caching of ListView ImagesAndroid,Open Source, ProgrammingAdd comments

2011-08-18 21:21:35 946

转载 Android Open Accessory Development Kit

Android Open Accessory Development KitIn this documentADK ComponentsGetting Started with the ADKInstalling the Arduino softw

2011-08-18 11:40:28 1670

转载 Android USB Host

USB HostIn this documentAPI OverviewAndroid Manifest RequirementsWorking with devicesDiscovering a deviceObtaining permissio

2011-08-18 11:39:54 1684

转载 Android USB Accessory

USB AccessoryIn this documentChoosing the Right USB Accessory APIsInstalling the Google APIs add-on libraryAPI Overview

2011-08-18 11:39:20 1950

转载 Android USB Host and Accessory

USB Host and AccessoryTopicsUSB AccessoryUSB HostAndroid supports a variety of USB peripherals and Android USB accessories

2011-08-18 11:38:09 1144

转载 Android SIP(Session Initiation Protocol)

Session Initiation ProtocolIn this documentRequirements and LimitationsClasses and InterfacesCreating the ManifestCreating a SIP

2011-08-18 11:36:11 1223

转载 Android NFC(Near Field Communication)

Near Field CommunicationIn this documentAPI OverviewDeclaring Android Manifest elementsThe Tag Dispatch SystemUsing the inte

2011-08-17 11:31:53 843

转载 Android 应用配置文件AndroidManifest.xml

The AndroidManifest.xml FileIn this documentStructure of the Manifest FileFile ConventionsFile FeaturesIntent FiltersIcons a

2011-08-16 14:48:38 584

转载 Android 拷贝与粘贴

Copy and PasteQuickviewA clipboard-based framework for copying and pasting data. Supports both simple and complex data, includin

2011-08-16 14:46:37 735

转载 Android 接口定义语言(AIDL)

Android Interface Definition Language (AIDL)In this documentDefining an AIDL InterfaceCreate the .aidl fileImplement the inter

2011-08-16 13:51:59 764

转载 Android设备上调用谷歌应用的的Intent 列表

Intents List: Invoking Google Applications on Android DevicesFor more information about intents, see the Intents and Intent Filters.

2011-08-16 13:49:58 536

转载 Android 应用安装位置

App Install LocationQuickviewYou can allow your application to install on the device's external storage.Some types of applicatio

2011-08-16 13:48:13 583

转载 Android 应用兼容性

Android CompatibilitySee alsoMarket FiltersProviding Alternative ResourcesSupporting Multiple ScreensAndroid is designed to

2011-08-16 13:42:24 654

转载 Android 应用发布准备

Preparing to Publish: A ChecklistPublishing an application means testing it, packaging it appropriately, and making it available to user

2011-08-16 13:39:21 508

sourceinsight 4

sourceinsight4破解文件。用sourceinsight4.exe替换安装目录同名文件,在导入另一个文件则破解成功

2017-11-16

sbc编解码源代码

android上用的,网上下载,版权自己考虑,侵权与上传者无关

2015-07-17

VS2008工程转换为VS2005工程

VS2008工程转换为VS2005工程

2013-04-02

WinCE_CAB_Manager

windows mobile 制作安装包工具。

2013-04-02

Apk ONclick v3

android apk 一键破解集成工具工具.

2012-11-28

msn 2012 去广告

去掉主面板下面的广告可用,其他的自己试,不行可以恢复

2012-09-19

SuperOneClick v2.3.2 ShortFuse

SuperOneClick v2.3.2 Root 工具

2012-03-15

visual SVN 1.7.6

visual studio SVN plugin, visual SVN 1.7.6 没问题的

2009-10-09

visual assist 10.5.1727.0

visual studio 最佳插件,最新版本,带Crack DLL

2009-07-11

sourceinsight 3.50.0064 with sn

2009 版本 3.50.0064 带SN,仅供学习研究之用,勿做商务用途,看完删除。哈哈,本人不承担他人使用下载本文档之责任。

2009-07-02

visual svn 1.72 with xxx

新版本,下吧,免费的,哈哈,我用着呢,挺好的,visual svn 1.72,仅供学习之用,切勿用于商业用途

2009-06-04

Atlassian.FishEye.v1.6.6-SHOCK

Rediscover your repository contents with FishEye. Browse code, monitor commits, receive change notifications and pull insightful reports.

2009-05-11

visual assist 1724

带 crack DLL,其他的就不用说了吧。 不收钱的

2009-05-10

Android USB driver for xp

Android 平台 xp上的USB驱动,用于调试呀

2009-04-16

visual svn 1.62 (xxx)

SVN 的VS插件,很好用的,不错的,看看吧

2009-03-11

visual assist 1715(xxx)

不用说了吧 不明白也就不用下载了 visual assist 1715

2009-03-02

visual assist X 10.5.1711

好东西,自己看吧,最新版的,12月份出的,不在罗嗦了!

2008-12-19

visual assist x 1649 with crack

如果不知道是干啥的,也就不用知道了. 帶Crack

2008-10-04

sourceinsight 3.5.0063(With SN)

sourceinsight 3.5.0063

2008-08-05

WinCE CAB Manager v2.1.0.35 (X)

WinCE CAB Manager v2.1.0.35

2008-08-01

visual svn 1.4.2(XXX)

visual svn

2008-08-01

visual assist 1646(xx)

本下载中所包含程序,均通过网络收集,仅供学习研究之用,勿做他用。Visual Assist X具有强大的编辑特色,提高了生产效率,可以完全集成到您的Microsoft开发环境中,升级了您的IDE,在不改变编程习惯的同时就可以感受到Visual Assist X为您带来的好处。 Visual Assist X是一款非常好的Microsoft Visual Studio 2005和Visual Studio .NET插件,支持C/C++,C#,ASP,Visual Basic,Java和HTML等语言,能自动识别各种关键字、系统函数、成员变量、自动给出输入提示、自动更正大小写错误、自动标示错误等,有助于提高开发过程的自动化和开发效率。 系统需求 Visual Assist X可以工作于任何Microsoft IDE和操作系统。 开发环境:Visual Assist X兼容于以下开发环境,当您改变或新增了IDE时,需要重新安装Visual Assist X: Microsoft Visual Studio 2005 Team System Microsoft Visual Studio 2005 Professional Edition Microsoft Visual Studio 2005 Standard Edition (不支持 Express Editions) Microsoft Visual Studio .NET 2003 Microsoft Visual Studio .NET 2002 Microsoft Visual C++ .NET 2003 Microsoft Visual C++ .NET Microsoft Visual C++ 6.0 Microsoft Visual Studio 6.0 Microsoft Visual C++ 5.0 Microsoft Visual Studio 97 Microsoft eMbedded Visual Tools 4.0 Microsoft eMbedded Visual Tools 3.0

2008-07-31

MS.Press.Programming.Microsoft.Windows.CE.Dot.NET.3rd.Edition

MS.Press.Programming.Microsoft.Windows.CE.Dot.NET.3rd.Edition

2008-05-06

HACKING SECRETS REVEALED

HACKING SECRETS REVEALED

2008-05-06

空空如也

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

TA关注的人

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