Android learning Starting!

 In recent years,mobile platform become more and more popular!At present,the flourishing mobile platform are iOS and Android,symbian has been declining,wp7 struggling!

Note that Android is an open,not open source.Personally,I optimistic about the iOS and  Android.

Since optimistic about mobile platform,optimistic about Android,lets quickly research it! We must fist sharpen his tools.As we all know,the Android's app were wrote by Java,running on the Dalvik Virtual Mashine.In addition,the Android system is base on Linux
Kernel 2.6.So,if you want understanding all of the Android's particulars,we should have the Linux Kernel Knowledge.I limited,here recommends some classic books about the Linux Kernel:

1.Linux Kernenl Development.

2.Understanding the Linux Kernel.

3.Linux Device Drivers.

4.LInux内核源码情景分析

Have been look the Linux Kernel's books,the Android's books also should.We can have a perceptual about the Android.Recommends Following two books:

1.Professional Android Application Development.

2.Google Android SDK开发范例

It‘s could not be better have practice while reading books.Now,let begin our  Android journey!

时间: 2024-09-15 21:08:25

Android learning Starting!的相关文章

avd 启动报错-virtualbox 中ubuntu12.04 无法启动android虚拟机

问题描述 virtualbox 中ubuntu12.04 无法启动android虚拟机 Starting emulator for AVD 'AVD_for_Galaxy_Nexus' X Error of failed request: BadRequest (invalid request code or no such operation) Major opcode of failed request: 135 (GLX) Minor opcode of failed request: 1

超实用的Android开发自学资料分享全集

Java 学习 我要强调,一定要有Java 基础,而且Java 基础要牢固,当然我也不是说,Java 学的特别好,才能去学习Android,毕竟学习是循序渐进的,所以在以后的学习中要注意,对于Java 系统的学习,我有一下几个推荐:         Introduction to Programming in Java: An Interdisciplinary Approach        http://introcs.cs.princeton.edu/java/home/        普

android服务Service(上)- IntentService

  Android学习笔记(五一):服务Service(上)- IntentService  对于需要长期运行,例如播放音乐.长期和服务器的连接,即使已不是屏幕当前的activity仍需要运行的情况,采用服务方式.服务将通过API触发启动或者通过IPC(Interprocess Communication)连接请求触发启动.服务将一直运行直至被关闭,或者内存不足时由系统关闭.一般而言,为了节省电量,服务应进行优化减少CPU的消耗和大量网络通信.服务可用于以下的场景: 1.用户离开activity

IntentService简介

在manifest中声明服务 和activity.content provider一样,服务也必须要在AndroidManifest文件中进行声明是<application>中的子节点.例如我们下面第一个service的例子ServiceDownloader. <application - - >       ... ...      <service android:name=".ServiceDownloader"> </applicati

数据科学家必须知道的 10 个深度学习架构

近年来,深度学习的发展势头迅猛,要跟上深度学习的进步速度变得越来越困难了.几乎每一天都有关于深度学习的创新,而大部分的深度学习创新都隐藏在那些发表于ArXiv和Spinger等研究论文中. 本文介绍了部分近期深度学习的进展和创新,以及Keras库中的执行代码,本文还提供了原论文的链接. 简洁起见,本文中只介绍了计算机视觉领域内比较成功的深度学习架构. 另外,文章基于已经掌握了神经网络的知识,并且对Keras已经相当熟悉了的基础.如果你对这些话题还不太了解,强烈建议先阅读以下文章: <Fundam

android搭建环境错误 daemon not running. starting it now on port 5037 ADB server didn&amp;#39;t ACK

android搭建环境错误  daemon not running. starting it now on port 5037 ADB server didn't ACK ADB server didnt ACKdaemon not running.now on port 50371. 输入cmd进入dos界面, 进入android-sdk-windows\platform-tools目录, 执行下面命令启动adb start-server出现下面错误 * daemon not running.

用eclipse运行android程序的时候卡在ActivityManager: Starting: Intent 模拟器一直不动是怎么回事??有高手知道吗??

问题描述 用eclipse运行android程序的时候卡在ActivityManager: Starting: Intent 模拟器一直不动是怎么回事??有高手知道吗?? 问题补充:谢谢大家问题已经解决..路径中文问题 解决方案 你的问题太抽象了,你至少应该把软件和模拟器的版本说一下,然后上传你的工程源代码,这样大家才好分析问题,给出解决办法!解决方案二:是不是模拟器不自动启动app了?在模拟器里手动启动喽解决方案三:看下其他程序也这样吗.如果都这样重启下eclipse

Android failed creating starting window

/***************************************************************************** * Android failed creating starting window * 声明: * 最近正在整的一个App在logcat中总是报这种异常,貌似也不影响程序的运行,但 * 每次都看到这种异常实在是难受,于是还是查点资料解决了去吧. * * 2016-5-5 深圳 南山平山村 曾剑锋 **********************

Android官方入门文档[12]启动一个活动

Android官方入门文档[12]启动一个活动 Starting an Activity启动一个活动 This lesson teaches you to1.Understand the Lifecycle Callbacks2.Specify Your App's Launcher Activity3.Create a New Instance4.Destroy the Activity 这节课教你1.了解生命周期回调2.指定您的应用程序的启动活动3.创建一个新实例4.销毁活动 You sho