CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - 开发框架
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
ASP
.NET/ASPX
PHP
JSP
CGI
VC/MFC
Delphi/CppBuilder
Software Engineering
Network Develop
Server
Database
Homepage tools
Photo software
Other
Search - 开发框架 - List
[
Books
]
Android基础教程
DL : 6
第一部分 Android简介 第1章 快速入门.............. 3 1.1 安装工具...... 3 1.1.1 Java 5.0+.... 3 1.1.2 Eclipse.......... 4 1.1.3 Android....... 4 1.1.4 Eclipse插件..................... 5 1.2 创建第一个程序.... 7 1.3 在模拟器上运行程序............... 8 1.4 在手机上运行程序..................... 9 1.5 快速阅读指南.......... 9 第2章 基本概念........... 11 2.1 Android的系统架构................ 11 2.1.1 Linux内核..................... 11 2.1.2 本机库...... 12 2.1.3 Android运行时......... 13 2.1.4 应用程序框架........... 14 2.1.5 应用程序 15 2.2 它还活着... 15 2.2.1 进程不等于应用程序......... 16 2.2.2 应用程序生命周期............... 17 2.3 构建块......... 19 2.3.1 活动............ 19 2.3.2 意图............ 19 2.3.3 服务............ 19 2.3.4 内容提供者................. 19 2.4 使用资源... 20 2.5 安全性......... 20 2.6 快速阅读指南....... 21 第二部分 Android基础知识 第3章 设计用户界面..................... 25 3.1 数独游戏简介....... 25 3.2 声明性设计............. 26 3.3 创建启动界面....... 27 3.4 使用替代资源....... 34 3.5 实现About对话框..................... 37 3.6 应用主题... 41 3.7 添加菜单... 43 3.8 添加设置... 45 3.9 开始新游戏............. 47 3.10 利用日志消息调试程序... 48 3.11 利用调试器调试程序......... 50 3.12 退出游戏 50 3.13 快速阅读指南.... 50 第4章 绘制2D图形...................... 53 4.1 Android图形基础...................... 53 4.1.1 Color类... 53 4.1.2 Paint类... 54 4.1.3 Canvas类 55 4.1.4 Path类...... 55 4.1.5 Drawable类................. 56 4.2 在Sudoku程序中添加图形............... 58 4.2.1 开始游戏 58 4.2.2 定义Game类................. 58 4.2.3 定义PuzzleView类............... 60 4.2.4 绘制游戏盘面........... 61 4.2.5 绘制数字 63 4.3 处理输入... 65 4.3.1 定义和更新选定区域......... 66 4.3.2 输入数字 68 4.3.3 增加提示 69 4.3.4 抖动屏幕 70 4.4 其他问题... 71 4.4.1 创建软键盘................. 71 4.4.2 实现游戏逻辑........... 76 4.4.3 其他功能 78 4.5 更多改进... 80 4.6 快速阅读指南....... 81 第5章 多媒体. 83 5.1 播放音频... 83 5.2 播放视频... 88 5.3 为数独游戏配上音乐............ 92 5.4 快速阅读指南....... 94 第6章 存储本地数据..................... 95 6.1 为数独游戏添加选项............ 95 6.2 继续玩前一个游戏.................. 97 6.3 记住当前位置....... 99 6.4 访问内部文件系统............... 100 6.5 访问SD卡.............. 101 6.6 快速阅读指南.... 103 第三部分 高级主题 第7章 互联的世界. 107 7.1 通过意图实现浏览............... 108 7.2 利用视图打开网页............... 111 7.3 JavaScript与Java通信.......... 115 7.4 使用Web服务..... 121 7.5 快速阅读指南.... 131 第8章 定位与环境感知........... 133 8.1 位置,位置,位置............... 133 8.1.1 我在哪里.................... 135 8.1.2 更新位置.................... 137 8.1.3 模拟说明.................... 138 8.2 充分利用传感器..................... 139 8.2.1 了解传感器.............. 139 8.2.2 解析传感器的读数............ 140 8.2.3 模拟说明.................... 140 8.3 地图功能 141 8.3.1 嵌入MapView........... 142 8.3.2 准备就绪.................... 145 8.3.3 模拟说明.................... 146 8.4 快速阅读指南.... 147 第9章 SQL实战...... 149 9.1 SQLite简介........... 149 9.2 SQL基础 150 9.2.1 DDL语句.................... 151 9.2.2 修改语句.................... 151 9.2.3 查询语句.................... 151 9.3 你好,数据库.... 152 9.3.1 使用SQliteOpenHelper 153 9.3.2 定义主程序.............. 155 9.3.3 添加一行.................... 156 9.3.4 运行一个查询........ 157 9.3.5 显示查询结果........ 158 9.4 数据绑定 159 9.5 使用ContentProvider...... 162 9.5.1 更改主程序.............. 164 9.5.2 添加一行.................... 164 9.5.3 运行一个查询........ 165 9.6 实现ContentProvider...... 165 9.7 快速阅读指南.... 166 第10章 利用OpenGL实现3D图形.............. 169 10.1 理解3D图形..... 169 10.2 OpenGL简介.... 170 10.3 构建一个OpenGL程序... 171 10.4 管理线程............. 173 10.5 构建一个模型. 178 10.6 光线、相机…….................. 181 10.7 动作......... 183 10.8 应用纹理............. 184 10.9 透明效果............. 187 10.10 快速阅读指南..................... 189 第四部分 附录 附录A Java与Android语言及其API.......... 193 附录B 参考书目........ 197
Date
: 2010-11-08
Size
: 12.95mb
User
:
pumaxy
[
Books
]
windows编程技术
DL : 3
一本讲义,以“了解Windows编程的特点与Visual Studio开发平台,掌握Visual C++的MFC和Visual C# 的.NET编程,基本掌握OOP语言和若干实用的Windows编程技术”为目标,包括:用户界面、图形、文档视图等MFC基础编程,标准C++与STL、Java、C# 等OOP语言的语法和特点,.NET框架、FCL类库、窗体、WPF、WCF、WF、LINQ等.NET编程技术,以及GDI+、DLL、组件、多线程、多核、数据库、网络等高级程序设计。
Date
: 2010-12-18
Size
: 21.38mb
User
:
Emerald68@163.com
[
Books
]
Scrum Guide 中文版
DL : 0
自从上世纪90年代初期,Scrum方法就已经应用于开发复杂的产品。本指南介绍了如何应 用Scrum构建产品。Scrum不是一种过程,也不是一项构建产品的技术,而是一个框架,在 这个框架里可以应用各种过程和技术。Scrum的作用就是让开发实践方法的相对功效显现 出来以便随时改进
Date
: 2012-05-08
Size
: 328.62kb
User
:
yangyi188@hotmail.com
[
Books
]
网络环境下组态软件的研究与开发
DL : 0
硕士论文题目:网络环境下组态软件的研究与开发 主要内容:该文通过对网络技术和组态软件的研究与分析,提出了一种网络环境下组态软件的结构框架,并通过编程实现了基于Web的组态软件的开发.通过对计算机网络在工业信息监视系统上的应有物分析,我们将Internet技术与工业现场监视系统结合起来,从而形成了一种新的基于浏览器的工业信息监视系统 在课题的开发设计中,采用将工业现场自动化中各类实时信息,连接进入企业本地网络的服务器中,并以HTML文本的形式进行实时发布的设计方案,实现了动态画面的实时刷新 在实时任务处理中,引入了“任务控制块”(TaskControlBlock)的概念,针对系统的任务调度提出了一种基于高级语言的任务处理机制-任务轮转优先权调度机制(TaskCyclePriorityScheduling),同时采用了自定义消息以及多线程并行运行,提高了系统的响应速度 在系统实现中,通过对软件结构的分析,我们运用了面向对象的程序设计方法,完成了画面的设计与显示,实现了组态软件的开发. -master's thesis topic : network environment configuration software R & D main elements : the text of network technology and configuration software research and analysis, a proposed network configuration software environment, the framework, Programming and through a Web-based configuration software development. right through computer networks in industrial surveillance system the analysis should be on, we will Internet technology and industrial-site surveillance systems, thus, a new browser-based industrial surveillance system in the development of design issues, The adoption of the industrial automation field various real-time information to connect into the enterprise local network server, HTML and text in the form of real-time dissemination of design options achieving a dynamic s
Date
: 2025-12-16
Size
: 6.36mb
User
:
蒋小平
[
Books
]
delphi5企业级解决方案及应用剖析
DL : 0
本书是一部面向企业级应用的Delphi 5高级编程开发专著。全书以企业级应用体系结构为框架,以Delphi 5最新最强大的功能为线索 ,结合软件工程理论和项目管理经验,深入探讨了Delphi 5企业级开发的思想、策略及技术要点,并通过人力资源管理系统/电子商务货物配送系统、自动控制、与监测系统这三个典型的企业级解决方案及应用剖析,全面细致地介绍了如何使用Delphi实现真正意义上的企业级应用开发。 全书内容详实、例程丰富、汇集了作者多年实际开发经验和研究心得,是一本真正面向实战应用的Delphi力作,可为Delphi程序员挑战发展空间提供帮助,亦可供中、高级编程人员及项目主管参考。-the book is a business-oriented applications of five senior Delphi programming monographs. Guidebook to enterprise-level Application Architecture as a framework, Delphi 5 latest and the most powerful features of the trail, combining theory and software engineering project management experience, in-depth study of five Delphi development of the enterprise-class thinking, strategies and techniques, and human resource management system/electronic commerce goods distribution system, automatic control, This monitoring system with three typical enterprise solution and application analysis, full detailed introduction on how to use Delphi to realize the true meaning of enterprise-class application development. Informative book, rich routines, the author brings together many years of experience an
Date
: 2025-12-16
Size
: 12.97mb
User
:
陈成
[
Books
]
javaModeOfArchitectureBuilding
DL : 0
软件框架设计模式。位于需求和构建之间的软件开发过程阶段的学习资料。总结已有经验,归结标准模式。-software framework design patterns. Located between the demand and build the software development stage of the process of learning materials. Summing up the experience acquired, summed up the standard model.
Date
: 2025-12-16
Size
: 1.93mb
User
:
雨林
[
Books
]
Aspnetkjkf
DL : 0
《Asp.net服务器控件与组件开发》电子版,本书详细介绍了Web Forms编程模型,对.net框架组件和控件编程进行了概述。-"ASP.NET server controls and components development of the" electronic version, The book details the Web Forms programming model, right. net framework components and control program were outlined.
Date
: 2025-12-16
Size
: 8.84mb
User
:
王洪刚
[
Books
]
plonebook-zh
DL : 0
plone内容管理系统开发手册。可以和zope(Z对象开发环境无缝连接)。是python语言开发的最好应用框架。-Plone content management system development manual. Zope can (Z target development environment seamless connection). Python-language development is the best application framework.
Date
: 2025-12-16
Size
: 2.37mb
User
:
卢勇
[
Books
]
PureMVC_Implementation_Idioms_and_Best_Practices_c
DL : 0
一本好书,介绍Flex开发框架Pure MVC。适合Flash高级开发参考。-Flex Framework Pure MVC
Date
: 2025-12-16
Size
: 432kb
User
:
chenzj
[
Books
]
ASP_NET3_5_jiaochen_18
DL : 0
第18章 WCF开发基础 WCF(Windows Communication Foundation)是.NET Framework的扩展,WCF 提供了创建安全的、可靠的、事务服务的统一框架,WCF 整合和扩展了现有分布式系统的开发技术,如Microsoft .NET Remoting、Web Services、Web Services Enhancements (WSE)等等,来开发统一的可靠的应用程序系统。 -Chapter 18 the basis of WCF development WCF (Windows Communication Foundation) is. NET Framework extension, WCF provides the creation of safe, reliable services in a unified framework, WCF integration and expansion of the existing development of distributed systems technologies such as Microsoft. NET Remoting, Web Services, Web Services Enhancements (WSE) and so on, to develop a unified system of reliable applications.
Date
: 2025-12-16
Size
: 675kb
User
:
张虎
[
Books
]
SpringGuide
DL : 0
spring教程 本教程倡导J2EE的基本思想,并随书提供了一个初步的开发框架的实现 , 讲述了FRAMEWORK的设计思想及在开发中的实现-spring Tutorial
Date
: 2025-12-16
Size
: 1.02mb
User
:
吉祥
[
Books
]
wincetips
DL : 0
ARM框架是目前嵌入式应用中占主导地位的32位微控制器/微处理器框架,是学习嵌入式系统的良好起点。本书以LPC2000系列ARM微控制器为例,深入浅出的介绍了嵌入式系统开发的各个方面。
Date
: 2025-12-16
Size
: 21.76mb
User
:
陈益
[
Books
]
Android.application.framework.principles.and.progr
DL : 0
Android_应用框架原理与程序开发_TW GAOHUANGTANG-Android_ application framework principles and program development
Date
: 2025-12-16
Size
: 5.67mb
User
:
kwokyy
[
Books
]
Strategy2007SDK
DL : 0
清华大学机器人PDA程序开发框架tegy2007SDK\PDA程序开发框架-Strategy2007SDK
Date
: 2025-12-16
Size
: 463kb
User
:
许东
[
Books
]
brew-game
DL : 0
简单介绍brew游戏开发的基本流程与框架,更多内容可以参考www.brewmpchina.com里面的教程-Briefly the basic brew game development process and framework for more tutorials which refer www.brewmpchina.com
Date
: 2025-12-16
Size
: 178kb
User
:
狮子
[
Books
]
Ext_JS
DL : 0
EXT JS通常简称为EXT,它是一个非常优秀的Ajax框架,可以用来开发具有炫丽外观的富客 户端应用。它是一个用JavaScript编写的与后台技术无关的Ajax框架。-EXT JS is usually referred to as EXT, which is a very good Ajax framework that can be used to develop the dazzling look of rich client applications. It is a written with JavaScript and Ajax back-end technology independent framework.
Date
: 2025-12-16
Size
: 715kb
User
:
MichaelSue
[
Books
]
Django_book_2
DL : 0
Python的一个框架Django cookbook的中文版,主要介绍Django,有助于利用django进行开发,是一个不错的学习资料。-A Python framework Django cookbook Chinese version introduces Django, help use django development, it is a good learning materials.
Date
: 2025-12-16
Size
: 1.87mb
User
:
yi
[
Books
]
C++多核高级编程中文高清版
DL : 0
本书主要内容:1:并发编程和同步带来的各种缺陷、陷阱和挑战; 2:调试和测试多核编程的方法与技术; 3:如何使用跨下台技术米利用处理器的特定特性; 4:操作系统在多核编程中的任务; 5:将框架类作为并发构建块加以利用的方法; 6:如何通过使用接口类宋降低任务同步和通信的复杂性。本书适合于希望从事多核编程和多核应用程序开发的开发人员(The main contents of this book: 1: concurrent programming and synchronization brought about by various pitfalls, pitfalls and challenges; 2: debugging and testing multi-core programming methods and techniques; 3: how to use cross stepping technology meters to make use of processor specific characteristics; 4: the task of operating systems in multicore programming; 5: the framework class as a concurrent building blocks to take advantage of the method; 6: how to reduce the complexity of task synchronization and communication by using the interface class song. This book is suitable for developers wishing to work with multicore programming and multicore applications)
Date
: 2025-12-16
Size
: 57.35mb
User
:
班
[
Books
]
django-docs-1.9-en
DL : 0
django官方离线文档,简单入门,快速熟悉网络开发框架。(Django official offline documentation, simple entry, quickly familiar with the network development framework.)
Date
: 2025-12-16
Size
: 5.78mb
User
:
纳凉的蜗牛
[
Books
]
21天精通微信小程序开发
DL : 0
本书站在学习的角度,目的是让学习者通过21天的时间了解到微信小程序的技术框架结构、开发环境搭建、编程语言细节等。本书全面地讲解了微信小程序的逻辑层与视图层的架构特点、JavaScript语言的入门和进阶知识、WXML语言的语法特点、WXML视觉组件的使用、WXSS样式表语言的语法入门、常用样式描述语句、盒模型和Flex布局等,快速具备微信小程序开发的能力(This book stands at the angle of learning. The purpose of this book is to let the learners understand the technical framework of the WeChat small program, the development environment and the details of the programming language through 21 days.)
Date
: 2025-12-16
Size
: 9.17mb
User
:
ntwzy
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.