WINDOWS上Android开发环境搭建
参考书籍PDF教程
Android开发教程.pdf
开发者首页
http://developer.android.com/
以上真正的首页不能访问
镜像:http://androidappdocs.appspot.com/index.html
中文:http://www.android123.com.cn/android_kit.html
参考别人的BLOG http://g.52cd.net/510.shtml
安装文档 http://androidappdocs.appspot.com/sdk/installing.html
1.updating
Install Android 1.6 SDK or later and then use SDK and AVD manager tool to update to Android 2.2.
2.Preparing Your Development Computer
install JDK and eclipse (we should install eclipse first and then we can install the eclipse plug-in Android Development Tools(ADT) plug-in).
3.Downloading the SDK Starter Package and install android sdk
http://androidappdocs.appspot.com/sdk/index.html
we got 2 files: android-sdk-windows-1.6_r1.zip, android-sdk_r06-windows.zip from URL
http://dl.google.com/android/archives/android-sdk-windows-1.6_r1.zip
http://dl.google.com/android/android-sdk_r06-windows.zip
unzip the file android-sdk-windows-1.6_r1.zip to c driver C:\android-sdk-windows-1.6_r1
set the env ANDROID_HOME=C:\android-sdk-windows-1.6_r1
add this to the path=C:\android-sdk-windows-1.6_r1\tools
and then go to the command line, you can type >android -help to verify you have install everything well.
4.install eclipse plug-in ADT and set to Android SDK
eclipse plugin ADT URL:
https://dl-ssl.google.com/android/eclipse/
set eclipse plug-in to find the right SDK.
[References]----> [Android] -----> Browse the location of SDK we just installed:C:\android-sdk-windows-1.6_r1------>[OK]
5. unzip SDK Setup and install SDK 2.2
unzip file android-sdk_r06-windows.zip and we got directory android-sdk-windows, and then move it to the right place.
click the SDK Setup.exe and follow the rules http://www.android123.com.cn/zhongwensdk/366.html
[update All]------[accept All]
after that I found that we can do the update in eclipse [Window] ------> [Android SDK and AVD Manager]
6. create a new project helloworld
eclipse menu [New] ----[Project] -------[Android]-------[Android Project]
project name: easyandroid
Build Target: Android 2.2
Application name: Hello
Package name: com.sillycat.easyandroid
Create Activity: Hello
Min SDK Version: 8
[Next] ------ [Finish]
I modify the Hello.java like this:
package com.sillycat.easyandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class Hello extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// setContentView(R.layout.main);
TextView tv = new TextView(this);
tv.setText("This is test about say hello to Carl!");
setContentView(tv);
}
}
select the project and run as Android Application------> add new Android Virtual Device
Name: android2.2
Target:Android 2.2 - API Level 8
SD Card: Size 64 Mib
[Create AVD]
And after that we can see the Hello in the menus and click it turn to the hello world view.
分享到:
相关推荐
android开发起步 android 新手 Windows下Android开发环境搭建手册.pdf
### Windows下Android开发环境搭建详尽指南 在Windows操作系统下搭建Android开发环境是迈向移动应用开发的第一步。本文将从零开始,详细指导如何在Windows系统中构建完整的Android开发环境,包括所需软件的下载、...
### Windows平台Android开发环境搭建详解 #### 一、所需工具及环境 为了在Windows平台上搭建一个完善的Android开发环境,你需要以下几样工具: 1. **操作系统**:本指南基于WinXP SP3,但大部分步骤同样适用于更...
总的来说,Windows下Android开发环境的搭建是一个相对复杂的过程,需要耐心和细心。熟悉每一个工具的使用和配置,理解它们之间的相互作用,是成功开发Android应用的前提。通过不断实践和学习,开发者可以逐步掌握这...
在Windows 7环境下搭建Android开发环境是开发者入门Android编程的第一步。以下是一个详细步骤的概述: 1. **下载所需软件**: - **JDK (Java Development Kit)**:Java编程的基础,用于编译和运行Java代码。你可以...
Android 开发环境搭建及运行第一个项目 本文将详细讲解 Android 开发环境的搭建和运行第一个项目的过程。 Android 开发环境的搭建需要安装 JDK、Eclipse 和 Android SDK,接着安装 ADT 工具,最后配置环境变量和...
在Android开发过程中,环境搭建是第一步,也是至关重要的一步。以下将详细讲解如何一步步搭建一个完整的Android开发环境。...至此,Android开发环境搭建完毕,你可以开始创建你的第一个Android项目了。
Windows下Android开发环境搭建手册
在搭建Android开发环境时,可能会遇到各种问题,如版本兼容性、网络连接、环境变量配置等。解决这些问题通常需要查阅官方文档、社区论坛或者搜索网上的解决方案。一旦环境搭建完毕,你就可以开始愉快地编写Android...
### 在Windows下搭建Android开发环境 #### 一、引言 随着移动互联网技术的迅猛发展,Android操作系统在全球智能手机市场占据主导地位,这也促使了越来越多的开发者加入到Android应用开发的行列中。对于前端开发...
在本文中,我们将详细探讨如何搭建完整的Qt Android开发环境,包括所有必要的组件和步骤。首先,确保你已准备好以下软件包: 1. `qt-opensource-windows-x86-5.9.0` - 这是Qt 5.9版本的安装文件,用于创建Qt应用...
图解全攻略,windows环境下搭建android开发环境。
WindowsXP 下 Android 开发环境搭建步骤 本文档将指导读者在 WindowsXP 环境下搭建 Android 开发环境,涵盖 JDK、Eclipse、Android SDK、ADT 的安装和配置,以及创建 AVD 等步骤。 一、环境搭建 1.1、JDK 安装 ...
### Android开发环境搭建及配置详解 #### 一、引言 随着移动互联网的快速发展,Android平台已成为移动应用开发的重要领域之一。对于初学者而言,掌握Android开发环境的搭建与配置至关重要。本文旨在详细介绍如何从...