Android移动开发基础案例教程(第2版)完整全套教学课件_第1页
Android移动开发基础案例教程(第2版)完整全套教学课件_第2页
Android移动开发基础案例教程(第2版)完整全套教学课件_第3页
Android移动开发基础案例教程(第2版)完整全套教学课件_第4页
Android移动开发基础案例教程(第2版)完整全套教学课件_第5页
已阅读5页,还剩598页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

第1章Android

基础入门.pptx第2章Android

常见界面布局.pptx第3章Android

常见界面控件.pptx第4章程序活动单元Activity.pptx第5章数据存储.pptx第6章内容提供者.pptx第7章广播机制.pptx第8章服务.pptx第9章网络编程.pptx第10章图形图像处理.pptx第11章多媒体应用开发.pptx第12章综合项目一仿美团外卖.pptx第1章Android基础入门《Android

移动开发基础案例教程(第2版)》黑马程序员传智教育旗下高端IT

教育品牌了解1G~5G

的通信技术,能够说出1G~5G

技术的发展内容掌握Android

Studio开发环境的搭建步骤,能够独立搭建

Android

Studio开发环境掌握编写简单Android程序的步骤,能够编写一个Hello

World程序掌握资源的管理与使用方式,能够灵活使用程序中的资源掌握单元测试与Logcat的使用,能够完成对程序的调试学习目标/Target000Android是Google公司基于Linux平台开发的手机及平板电脑的操作系统,它自问世以来,受到了前所未有的关注,并迅速成为移动平台最受欢迎的操作系统之一。Android

手机随

处可见,如果能加入Android开发者行列,编写自己的应用程序供别人使用,想必是件诱人的事情。那么从今天开始,我们将开启Android

开发之旅,并逐渐成为一名出色的Android开发者。章节概述/

SummaryAndroid

简介Android开发环境搭建开发第一个Android

程序Android

程序结构01020304目录/Contents0

005

资源的管理与使用06

程序调试目

/Contents00-01.1

Android简介了

解1G~5G

的通信技术,能够说出1G~5G

技术的发展内容了解Android

的发展历史,能够说出Android

版本对应的系统名称和图标了

解Android

的体系结构,能够说出Android系统的4种分层结构了

解Dalvik

虚拟机,能够说出Dalvik

虚拟机编

译文件的过程

1.1Android简介yx.ityxb.com●

第一代通信技术(1G):

是指最初的模拟、仅限语音的蜂窝电话标准。●

第二代通信技术(2G)

:

是指第2代移动通信技术,代表为GSM,

以数字语音传输技术为核心。传输速度9.6k/s。第三代通信技术(3G):

是指将无线通信与国际互联网等多媒体通信结合的新

—代移动通信系统。3G

通信网在室内、室外和行车的环境中能够分别支持至少

2M/s、384K/s以及144K/s的传输速度。●第四代通信技术(4G)

:

又称IMT-Advanced技术,它包括了TD-LTE和

FDD-LTE。4G

通信网最高甚至可以达到100M/s的传输速度。●第五代通信技术(5G)

:

传输速度可达20Gbps。

1.1.1通信技术Android

操作系统最初是由安迪

·鲁宾(Andy

Rubin)开发出的,后来被Google收购,并于2007年11月5日正式向外界展示了这款系统。随后Google以Apache开源许可证

的授权方式,发布了Android

操作系统的源代码。

1.1.2

Android发展历史yx.ityxb.comAndroid9.0Androidpie(

)2008年9月发布Android

第1个版本Android1.1。2009年4月30日,Android1.5Cupcake

(纸杯蛋糕)正式发布。

2009年9月5日,Android1.6Donut

(甜甜圈)版本发布。Android1.5Cupcake(纸杯蛋糕)1.1.2

Android发展历史黑

员|传智教育旗下

|高

端IT

教育品牌应用程序层应用程序框架层核心类库层Linux内核层HomeActMty

MinagPscksge

ManageSurfaceManageOpenGL|ESSGLDisplay

DrlverUSB

Drlver>>>1.1.3Android体系结构Android

RuntimeCore

LibrariesDalvik

VirtualMachineApplicationsPhone

BrowserLibrariesMedlaFrameworkFreeTypeSSLLinux

KernelBluetoothDrverWiFI

DrlverBinder

(IPC)

DriverPowerManagementMFSystems

DrverAuldo

DrlverSQLiteWebkitlibcWindow

Monag钉TelephonyMonagerContent

ProidersResoUrceManagerNotficatlonMonagerXMPPServiceVew

SystemLocaton

ManagerApplicationFrameworkyx.ityxb.comCamenKeypadDrverDrverContactsDalvik是Google

公司设计的,用于在Android平台上运行的虚拟机,其指令集基于寄存器架构,执行其特有的dex

文件来完成对象生命周期管理、堆栈管理、线程

管理、安全异常管理、垃圾回收等重要功能。每一个Android

应用在底层都会对应

一个独立的Dalvik虚拟机实例,其代码在虚拟机的解释下得以执行,Dalvik虚拟机

编译文件的过程如下图所示。Dalvik虚拟机编译文件过程传智教育旗下高

端IT教育品牌1.1.4Dalvik虚拟机Android

应用程序Java源代码Dalvik虚拟机odex文件黑马程序员class文件JDK编译dex文件Dx工具优化1.2Android开发环境搭建

掌握Android

Studio开发环境的搭建步骤,

能够独立搭建Android

Studio开发环境

掌握模拟器创建的步骤,能够独立创建模拟器掌握在AndroidStudio中下载SDK的步骤,

能够独立下载SDK>

>

1.2

Android开发环境搭建先定

一个小目标!黑马程序员传智教育旗下

|

高端IT教育品牌yx.ityxb.com俗话说,“工欲善其事,必先利其器”。在开发Android

程序之前,先要搭建开发环境。最开始Android是使用Eclipse

作为开发工具的,但是在2015年底,Google公司声明不

再对Eclipse提供支持服务,Android

Studio将全面取代Eclipse。接下来,本节将针对

AndroidStudio开发工具的环境搭建进行讲解。

1.2.1AndroidStudio安装yx.ityxb.com下载AndroidStudio0-

—。AndroidStudio安装包可以从中文社区进行下载。这里我们以Windows64系统为例,

下载ANDROID

STUDIO3.2.0版本。AndroidStudio下载页面如下图所示。ADRODSTUD⁰32.0D⁰WNLOADFROMDLG00GLECOM立即开始使用Android

StudioAndroid

Studio

包含用于构建Android

应用所需的所有工具。选择其他平台size

SHA-256

checksum923MB978673a7babf51a9dca67729213c178995c1039a496dcldfecb4c095b842c7531000MB0a301ae52a41f0a55d10e78f8390b931abd6eb31af932a520738438d0d6bcfe9999

MBe288862663ae90cb9e329ce69cf431306b7933af10ed06e428a8c31900ed2ef0988

MB

a3499a64970bf97d95a3bb27ebe571a56cee77510fa₈a6d4745d6fbc24d252e11006MBe671d48cad66589860c510871167309b88c3f15e22a691cba053764c11a2a6ePlatformWindows(64-bit)Windows

(32-bit)MacLinuxAndroidstudiopackageandroid-studio-i

ide-181.5014246-windows.exe

Recommendedandroid-studio-ide-181.5014246-windows

ipinstallerandrroid

studdio-ide-181.5014246-windows32.zg

No

exe

instaleandroid-studio-ide-181.5014246-mac.dmgandroid-studio-ide-181.5014246-linuxzip请参阅AndroidStudio

发行说明。步骤1步骤2步骤3>>1.2.1AndroidStudio

安装步骤黑

员|传

端IT

教育品牌·版本:3.2.0·

发布日期:SEPTEMBER2018下载ANDROID

STU成功下载AndroidStudio安装包后,双击后缀名为.exe的文件,进入WelcometoAndroidStudioSetup页面,如下图所示。<BackNext>

Cancel步骤1步骤2步骤3

1.2.1Android

Studio安装步骤SetupwllguideyouthroughtheinstalationofAndroidGhudgItisrecommendedthatyoudoseallotherapplcations

before

starting

Setup.This

wil

make

it

possible

toupdate

relevant

systemfleswithouthavingtorebootyourcomputerCickNextto

continue.Android

Studio

Setup

口回XWelcometoAndroidStudioSetup安装AndroidStudio黑马程序员传智教育旗下

|

高端IT教育品牌AndroidStudioSetugChoose

ComponentsChoose

which

features

of

AndroidStudio

you

want

toinstal.Check

the

components

you

want

to

installand

uncheck

the

components

you

don't

want

to

instal.Cick

Next

to

continue.Select

components

toinstal:☑Android

VrtualDevicesee

itsdescripSpace

required:2.5GB<Back步骤1步骤2步骤3

1.2.1Android

Studio安装步骤单击上一页图中的

“Next”按钮,进入ChooseComponents页面,如下图所示。安装AndroidStudio黑马程序员传智教育旗下|

高端IT教育品牌yx.ityxb.comAndroid

StudioDesciptionNext>安装AndroidStudio单击上一页图中的

“Next”

按钮,进入ConfigurationSettings页面,如下图所示。步骤1步骤2步骤3

1.2.1Android

Studio安装步骤AndroidStudioSetupConfiguration

SettingsInstallLocationsAndroid

Studio

Installation

LocationThe

location

spedfied

must

have

atleast

500MB

of

fee

space.

Cick

Browse

to

customize:C:\Program

Fles\Android\Android

Studio黑马程序员传智教育旗下|

高端IT教育品牌yx.ityxb.com回x安装AndroidStudio单击上一页图中的“Install”按钮进入Installing页面开始安装,如下图所示。AndroidStudioSetupInstallingPleasewaitwhileAndroidStudo

is

being

instaled.Extract:gradle-messaging-4.6.jarShowdetails步骤1步骤2步骤3

1.2.1Android

Studio安装步骤黑马程序员传智教育旗下|

高端IT教育品牌yx.ityxb.comX页面,如下图所示。Android

Studio

Setup

XCompletingAndroidStudioSetupAndroidStudiohasbeen

instaledonyourcomputer.

CickFinish

todoseSetup.☑startAndroidStudioAndroidStudioFrish安装AndroidStudio安装完成后,单击上一页图中的

“Next”按钮进入CompletingAndroidStudioSetup步骤1步骤2步骤3

1.2.1Android

Studio安装步骤单击图中的

“Finish”按钮,至此,Android

Studio的安装全部完成。黑

下|高

端IT

牌步骤3

图中包含2个选项,其中选项①表示自定义AndroidStudio配置文件的位置,选项②表示不导入配置文件的位置。如果之前安装过AndroidStudio,想要导入之前的配置文件,则可以选择选项①,否则,选择选项②,此处可以根据实际情况进行选择。yx.ityxb.com如果我们在上一页图的页面中勾选了StartAndroidStudio选项,安装完成之后AndroidStudio会自动启动,会弹出一个CompleteInstallation对话框(选择导入AndroidStudio配

置文件位置的窗口),如下图所示。Complete

Installation

XImport

Studiosettingsfrom:OCustomlocation.Configfolderorinstallationhomeof

thepreviousversion◎

Do

not

import

settings0K

1.2.1Android

Studio安装步骤步骤1步骤2配置AndroidStudio配置AndroidStudio我们选择选项上一页图中的②之后会进入AndroidStudio的开启窗口,如下图所示。步骤1步骤2androi

laIntformotheuereds

1.2.1Android

Studio安装步骤黑

员|传智教育旗下|高

端IT

教育品牌步骤3配置AndroidStudio上一页图中的进度完成之后,会弹出AndroidStudioFirstRun对话框,如下图所示。步骤1Android

Studio

First

RunXX

Unable

to

access

Android

SDK

add-on

listSetup

Proxy

Cancel步骤3

1.2.1Android

Studio安装步骤黑

员|传智教育旗下|高

端IT

教育品牌步骤2配置AndroidStudio单击上一页图中的“Cancel”按钮之后进入WelcomeAndroid

Studio页面,如下图所示。步骤1步骤2步骤3

1.2.1Android

Studio安装步骤黑

下|高

端IT

教育品牌yx.ityxb.comInstallType◎StandardAndroidStudio

wi

beinstalled

with

the

mostcomRecommendedfermotusersOCuststomVou

can

customizeinstlltionsetigs

and

cmporentsingNest步骤1步骤2步骤3

1.2.1Android

Studio安装步骤单击上一页图中的“Next”按钮进入InstallType页面,如下图所示。配置AndroidStudio黑

员|

传智教育旗下www.theima.com|

高端IT教育品牌配置AndroidStudioO-

-o单击上一页图中的“Next”按钮进入SelectUI

Theme(选择UI主题)页面,如下图所步骤1步骤2步骤3

1.2.1Android

Studio安装步骤Android

Studio

Setup

WzardSelect

UIThemeO

Darcula黑

员|传

下www.itheima.com

端IT

教育品牌yx.ityxb.com示。口步骤1步骤2步骤3

1.2.1Android

Studio安装步骤配置AndroidStudioO-单击上一页图中的

“Next”按钮进入VerifySettings页面,如下图所示。VerifySettingsSDKComponentstoDewrlod黑马程序员传智教育旗下

|

高端IT教育品牌MB72.1

MB5.9MB149MB

MMgMgMByx.ityxb.comsDK

Patch

ApierAitony配置AndroidStudio单击上一页图中的“Finish”按钮进入DownloadingComponents页面,如下图所示。步骤1步骤2步骤3

1.2.1Android

Studio安装步骤传智教育旗下

高端IT教育品牌黑马程序员www.itheima.comDownloadingComponentstlig

Inta

Elt

Acslrg

n

iatll)c:Wsern\My\AppData\Lecal\Andr

oidSdk\extr

as\intelHardsre_Acetlerated_Execution_Manrs\My\hppDatPar

ning

C:Wsera\My\AppData\Lecal\Android\S&klextras\android\n2repesitary\package.xnlPrinCUarepDataleclatoi

SsthrckamParsingC:Wsara\WyhppData\Local\ndroid\S&\tools\packaga.xml步骤1步骤2步骤3

1.2.1Android

Studio安装步骤下载完成后,会显示DownloadingComponents(下载完成)页面,如下图所示。配置AndroidStudio-o黑马程序员传智教育旗下|

高端IT教育品牌yx.ityxb.com牵

Configure,Get

Help-至

,Android

Studio工具的配置已经完成。单击上一页图中的

“Finish”按钮,进入WelcometoAndroid

Studio窗口,如下图所示。aWelcome

to

Android

Studio

可回XAndroid

StudioVersion

3.2米Starta

newAndroidStudio

projectOpenanexistingAndroidStudio

project

Checkout

projectfromVersionControl▼图

ProfleordebugAPKImportproject(Gradle,EdipseADT,etc)

Import

an

Android

code

sample步骤1步骤2步骤3

1.2.1Android

Studio安装步骤创建AndroidStudio项目打开已经存在的AndroidStudio

项目从版本控制系统中导入项目配置和调试APK导入非Android

Studio项

目导入官方样例配置AndroidStudio黑

员|

传智教育旗下

高端IT教育品牌O-Android

程序可以运行到手机和平板等物理设备上,当运行Android

程序时,没有手机或平板等物理设备,可以使用Android

系统提供的模拟器。模拟器是一个

可以运行在电脑上的虚拟设备。在模拟器上可预览和测试Android应用程序。1.2.2模拟器创建黑马程序员www.itheima.com传智教育旗下高端IT教育品牌AndroidVitual

Device

Manager口

回XYourVirtual

DevicesAndroidStudioVirtual

devices

allow

you

to

test

your

applicatichavingtoownthephysicaldevices.+Create

Virtual

Device.Toprioritizewhichdevicesto

testyour

application

on,visitthe

Android

Dashboards,where

you

can

getup-to-dateinformation

on

which

devices

are

active

in

the

Android

andGooglePlayecosystem.步骤1步骤2步骤3yx.ityxb.com当创建完第一个Android程序时,在AndroidStudio中,单击导航栏中的

图标会进入YourVirtualDevices页面,如下图所示。单击ADV

Manager标签

1.2.2模拟器创建VirtualDeviceCoSeleAndroidChoose

a

defigurationctHardwareStudioice

definitionQCo

Nexus

4NaPlay

Store5izeRes5.7Sue

normaDensit

xhdp965.24.65725.4°dp5.1”800dpi4.7°720x1280dhdpNewHardwareProfileImportHardwareProfilesNext单击上一页图中的“+CreateVirtualDevice...”按钮,此时会进入选择模拟设备的SelectHardware页面,如下图所示。步骤3步骤21.2.2模拟器创建dpdpipdo选择模拟设备传智教育旗下高端IT教育品牌黑马程序员步骤1van下载SDK

System

Imageo———我们选择上一页图中的【Phone】→【Nexus

4】选项(此选项可根据自己需求选择不同屏幕分辨率的模拟器),单击“Next”按钮进入

SystemImage页Recommendedx86

ImagesOther

ImagesReleaseNamePLABIargetPieDownloa864ndrg8

4OregDownloaroid8.1

(Google

APlsOreoDownload26r86An

roid80(Goggle

AP/sNougatDownload25864n

roid7.1.1

(Google

APLsNougatDownload24x86droid70(Google

APisMarshmallowDownload4ndroid6.0(GoogleAPlsLollipogDownlo22x86Android5.1(GoogleAPls)面VitualDeviceConfigurationSystem

ImageAndroid

Studio步骤1步骤2Selectasystem

imageOreo步骤31.2.2模拟器创建evel268.0GoogleInc.Systenx86面,如下图所示。Werecommendtheseimages

becausethey

run

thefast

estandsupport

GoogleAPls.传智教育旗下高端IT教育品牌黑马程序员

θAsystem

image

must

beselectedto

continue.QuestionsonAPI

level?chartXasDKQuickfx

InstalltionLicenseAgreementAndroid

StudioTogetstartedwiththeAndroidSDKPreview,youmustagreetothefollowing

termsand

onditions.Asdescribed

below,pleasenotethat

hisisapreviewversion

oftheAndroidSDK,subjecttochange,thatyouuseatyourownrisk.TheAndroidSDKPrev

iewi

isnot

a

stable

ase,and

may

containe

errors

and

defects

that

can

result

inseriousdamagetoyourcomputersystems,devicesanddata.ThisistheAndroidSDK

Preview

License

Agrement

the

"License

Agreement).1

.

Introduction1.1

The

Android

SDK

Preview

(referred

to

in

the

License

Agreement

as

the

"Preview"andspecificallincluding

the

Android

system

files,packaged

APIs,andPreviewlibraryles,ifandwhentheyaremadeavailable)islicensedto

you

subject

to

the

terms

oftheUicense

Agreement.TheUicenseAgreement

formsalegalybindingcontractbetweenyou

and

Google

in

relation

to

your

use

of

the

Preview.1.2

"Android"means

theAndroid

software

stackfor

devices,as

made

available

undern

r

i

p

n

t

cthoi

located

at

the

following

URL:http://source.1.3'Google"means

GoogleInc,a

Delaware

corporation

with

principal

place

ofbusinessat1600AmphitheatreParkway.MountainView,CA

94043,UnitedStates.2.

Accepting

the

License

Agreement2.1In

order

to

use

thePreviewyoumust

first

agree

to

the

License

AgreementYou

mayO

Decline

OAccepteviousmwhiomce

ProjetaoueSedond选中上一页图中的Oreo系统版本,单击“Download”进入LicenseAgreement页面,如下图所示。下载SDK

System

Image步骤1步骤2步骤3黑马程序员传智教育旗下

|高端IT教育品牌1.2.2模拟器创建android-sdk-preview-icense±Google

APls

Intel

x86

Atomsyx.ityxb.comLicensesCancelNext—SDKQuickfix

InstalltionComponent

InstallerAndroidStudioInstallingRequestedComponentsSDK

Path:CAUsers\M/AppData\LocaNAndroid\SdkPackag4

to

installPrparing“InstallGoogle

APIs

Intel

x86

AtomSystenInnge

(revision.12)”Domnlondinghttps://algoole.con/mdroid/rapository/sya-ind/cooclo_pis/x86-26_r12.zipDownloading./android/repository/sys-img/google_apis/x86-26r12.zipO

Please

wait

unti

the

instllationfirishes选中上一页图中的“Accept”按钮接受页面中显示的信息,并单击“Next”按钮进入ComponentInstaller页面,如下图所示。下

载SDK

System

Image0-步骤1步骤2步骤3黑

员|

传智教育旗下

高端IT教育品牌1.2.2模拟器创建yx.ityxb.comInstallingRequestedComponentsSDK

PatheC\Users\MyAppData\locaNAndroid\SdkPackattainstagl

。APIs

Intal

xB6ASyst

tamInage(systamdoid-26:googlo_pis;86)Preparing

Inatall

GogleAPIn

Intelx06

AtemSyitenImace

(revisien.12)”Downloadinghttps://dleoogle.on/android/repository/sys-ime/eogle_apis/x06-26_r12.zip

InstallGoogleAPIs

Intel

x86

AtonSystenImagt

(revision:12)”ready.Installing

Google

APIs

Intel

xB6

Atom

Systen

Inoge

inc:Wsars\y\AppData\Local\Android\S业\cystem-inngs\andoid-26\googlo_pis

s\w86

Inatall

GoogleAPIs

Intelx36

AtonSystenImage

(revision.12)”ceaplete.TnatallGoocleAPIa

Intel

x06

AtonSyatemImage

(revision:12)”finishd0-下载完成后的ComponentInstaller的页面,如下图所示。ComponentInstallerAndroid

Studio步骤1步骤2下载SDKSystem

Image步骤31.2.2模拟器创建黑马程序员传智教育旗下|

端IT

牌出SDK

QuickfxInstalationaVirtual

DeviceConfigurationAndroid

Virtual

Device(AVD)AndroidStudioVerify

ConfigurationAVD

Name

Nexus4API26AVD

NameCoThenameofthisAVD.Graphics:

AutomaticShowAdvancedSetings步骤4步骤5yx.ityxb.com此时选中System

Image页面中系统版本名称为Oreo的条目,单击

“Next”按钮进入Android

VirtualDevice(AVD)页

面,如下图所示。1.2.2模拟器创建创建模拟设备传智教育旗下高端IT教育品牌黑马程序员

AndroidVirtualDevice

Manager回xYourVirtual

DevicesAndroidStudiolypeNamePlay

StoreResolutiorAPITargetCPU/AB1ZDiskNexus4

API

26768×1280:.26Android

8.0(.861.0

GB+Create

Virtual

Device.单击上一页图中的“Finish”按钮,完成模拟器的创建。此时在YourVirtualDevices页面中会显示创建完成的模拟器,如下图所示。步骤5yx.ityxb.com步骤41.2.2模拟器创建创建模拟设备传智教育旗下高端IT教育品牌黑马程序员单击上一页图中的“启动”▶按钮启动模拟器,启动完成后的Android模拟器界面,如下图所示。步骤5黑

员|

传智教育旗下www.itheim

高端IT教育品牌1.2.2模拟器创建打开模拟设备步骤4DefaultSettings

XQ

Reset√System

SettingsPasswordsHTTPProxyNameDataSharingUpdates]Android

8.0(Oreo)AndroidSDKNotificationsQuickLists22PathVariablesKeymap>EditorPluginsAndroid

4.1

(Jelly

Bean)>Build,Execution,DeploymentKotlin

Updates13>ToolsAndroid

StudioOK

Cancel

Apply步骤2Appearance

&BehaviorManager

for

the

Android

SDK

and

Tools

used

by

Android

StudioAppearanceAndroidSDKLocation:C:\Users\admin\AppData\Local\Android\SdkEditMenusandToolbarsSDKPlatformsSDKTools|SDKUpdateSites

1.2.3在AndroidStudio中下载SDK打开AndroidStudio,单击导航栏中的▲图标,进入DefaultSettings窗口,EachAndroidSDKPlatformpackageincludestheAndroidplatformandsources

pertaining

to

anAPIlevelbydefault.Onceinstalled,AndroidStudiowillautomaticallycheckforupdates.Check

"showpackage

details"to

display

individual

SDKcomponents.Android7.1.1(NougatAndroid

70(Nougat)Android

6.0(Marshmallow)]Android5.1(LollipopAndroid

5.0(Lollipop)Android

4.4W

(KitKatWear)Android

4.4(KitKat)]Android

4.3

Jelly

Bean]Android

4.2

JellyBean]Not

installedNot

installedPartially

installedNot

installedNot

installedNot

installedNot

installedPartially

installed

Not

installed步骤1Android

4.0.3(ceCreamSandwich)Android

4.0

(ceCreamSandwich)

□Android

3.2(Honevcomb)下载SDK版本StatusPartially

installededAppearance

&Behavior

>SystemSettings》Android

SDK传智教育旗下高端IT教育品牌黑马程序员如下图所示。installed

installed

installed

installed

installed□Android

9.0(Pie)☑Android

8.1(Oreo)□ShowPackage

DetailsAPILevel

Revision2120191817161514Not

Not

Not

Not

Not282726252423下载SDK

版本在SDK

Platforms选项卡下选择Android8.1(Oreo)条目,单击图1-31中的

“OK”按钮会弹出确认安装SDK组件的ConfirmChange窗口,如下图所示。>>

1.2.3在AndroidStudio中下载SDK-Android

SDKPlatform

27revision

3OK

Cancel步骤1步骤2Confirm

Change0

The

following

componentsXwillbeinstalled:传智教育旗下

高端IT教育品牌黑马程序员

www.itheima.comSDKQuickfix

InstallationComponent

AndroidStudioInstallerInstalling

RequestedComponentsSDKPath:C\Users\admin\AppData\Local\Android\SdkPackages

to

install-AndroidSDKPlatform27(platforns;android-27)Preparing“InstallAndroidSDKPlatform

27

(revision:3)”

.Downloading

https://dl

/android/repository/platform-27_r03.zipDownloading..

/android/repository/platform-27_r03.zipOPleasewait

until

the

instllation

fnishesBackground图所示。步骤1步骤2

1.2.3在AndroidStudio中下载SDK单击上一页图中的“OK”

按钮,进入Component

Installer下载页面,如下黑

员|

传智教育旗下

高端IT教育品牌下载SDK

版本步骤1步骤2InstallingRequested

ComponentsSDK

Path:CAUsers\admin\AppData\LocalAndroid\SdkPackages

toinstall-Android

SDKPlatform27(platferns;android-27)Preparing

“Install

Android

SDK

Platforn

27

(revision:3)”Downloading

https://dl

google.cam/android/repository/platform-27_r03.zip“Install

Android

SDK

Platform

27(revision:3)”ready.InstallingAndroidSDKPlatforn27inC:\Uars\admin\ApData\Local\Android\Sdr\platforms\ndroid-27

“Install

Android

SDK

Platform27(revision:3)”complete.“Install

Android

SDK

Platform27

(revision:3)”

1.2.3在AndroidStudio中下载SDK下载完成后的Component

Installer页面,如下图所示。SDK

Quickfix

InstalltionComponent

InstallerAndroidStudio黑

员|

传智教育旗下

高端IT教育品牌下载SDK版本2Appearance&Behavior>System

Settings)Android

SDK

ResetManagerfortheAndroidSDKandTools

used

byAndroidStudioAndroid

SDKLocation:

C:\Users\admin\AppData\Local\Android\Sdk

EditSDK

Platforms

SDK

Tools

sDK

Update

SitesBelow

arethe

available

SDK

developertools.Once

installed,Android

Studiowill

automaticaly

check

forupdates.Check"show

packagedetails"todisplayavailableversions

ofan

SDK

Tool.HTTP

ProData

SharingUpdatesjLDBAndroid

SDKNotificationsQuick

ListsPath

VariablesKeymap>

EditorPlugins>Build,Execution,DeploymentNotinstalledKotlin

Updates7.3.2>

ToolsAndroidStudio②步骤1步骤2在Default

Settings窗口中的SDKTools选项卡下,勾选AndroidSDK

Build-Tools

选项,如下图所示。□AndroidAutoAPISimulators□Android

AutoDesktopHead

Unitemulator

☑AndroidEmulator□Android

SDK

Platform-Tools

28.0.1☑Android

SDK

ToolsDocumentation

for

Android

SDK□GooglePlayAPKExpansion

libraryGooglePlayInstantDevelopmentSDKGooglePlayLicensing

LibraryGoogle

Playservices☑GoogleUSBDriver,rev

11□Google

WebDriverFIntel

x86

EmulatorAccelerator(HAXM

installer)

1.2.3在AndroidStudio中下载SDKStatus

InstaledNotInstalledNot

InstallecNotInstalledNot

installed

InstalledInstalledInstalleNot

installed

NotinstalledNot

installed

Not

installedAppearance&BehaviorAppearanceMenus

and

Toolbars

√System

SetingsPasswords下载Tools工具NamDAndroid

SDKBuild-Tools

GPU

Debuggingtools传智教育旗下高端IT教育品牌黑马程序员11.128.0.16

28.0.126.1.1OKApply1.6.04911.0.0□Show

Package

DetailDefault

SettingsVersionQ下载Tools工具接着勾选DefaultSettings窗口右下角的ShowPackageDetails选项,会打开AndroidSDK

Build-Tools中的SDK版本列表信息,在列表中勾选27.0.0条目,单

击“OK”

按钮会弹出Confirm

Change窗口,如下图所示。ConfirmChange

X0

The

following

components

willbeinstalled:-Android

SDKBuild-Tools

27

version

27.0.0OK

Cancel1.2.3在AndroidStudio中下载SDK步骤1步骤2黑马程序员传智教育旗下

|

高端IT教育品牌yx.ityxb.comSDKQuickfix

InstllationComponent

InstallerAndroidStudioInstalling

RequestedComponentsSDK

Path:C:\Users\admin\AppData\Local\Android\SdkPackages

to

installAndroidSDKBuild-Tools27(build-tools;27.0.0)Preparing

“Install

Android

SDK

Build-Tools

27

(revision:27.0.0)”

.Downloadinghttps://dl/android/repository/build-tools_r27-windows.zipDownloading.

/android/repository/build-tools_r27-windows.zipO

Pleasewait

until

the

instllation

fnishesBackground步骤1步骤2

1.2.3在AndroidStudio中下载SDK单击上一页图中的“OK”

按钮进入ComponentInstaller下载页面,如下图所示。黑

员|

传智教育旗下www.itheima.com

端IT

教育品牌下载Tools工具yx.ityxb.com步骤1步骤2Packages

to

ingtal2Android

SDK

Build-Tools

27

(build-tools:27.0.0)Preparing“Install

Android

SDK

Build-Tools27(revision:27.0.0)”

.Downloadinghttps://dl/android/repository/build-tools_r27-windows.zipInstall

Android

SDK

Build-Iools

27

(revision:27.0.0)”ready.InstallingAndroid

SDKBuild-Tools

27

in

C:\Usars\adnin\AppData\Local\Andr

oid\Sdr\build-tools\27.0.0Install

Android

SDK

Build-Tools

27

(revision:27.0.0)”complete.Install

AndroidSDK

Build-Tools

27

(revision:27.0.0)”finishedComponent

InstallerAndroidStudio一段时间之后,SDK下载完成,ComponentInstaller下载完成页面的显示如下图

1.2.3在AndroidStudio中下载SDK黑马程序员|传智教育旗下

www.itheim

高端IT教育品牌Installing

RequestedComponentsSDKPath:C\Users\admin\AppData\Local\Android\Sdk下载Tools工具yx.ityxb.com所示。SDK

Quickfix

Installation1.3

开发第一个Android程序

掌握编写简单Android

程序的步骤,能够编

写一个Hello

World程

序1.3开发第一个Android

程序yx.ityxb.com>>宝头

推荐千元以内的智能手机①淘抢购

有好货000David

4:21PM

22%发现

朋友圈

扫一扫摇一摇苁附近的人购物

游戏

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论