一. 基本环境搭建

1.官网http://developer.android.com/sdk/index.html ,下载adt-bundle-linux-x86_64-20130729.zip

2. 解压sdk

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ unzip adt-bundle-linux-x86_64-20130729.zip
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ ls -al
总用量 1098596
drwxrwxr-x 6 bixiaopeng bixiaopeng 4096 8月 21 11:48 .
drwxr-xr-x 26 bixiaopeng bixiaopeng 4096 8月 21 13:06 ..
drwxr-x--- 4 bixiaopeng bixiaopeng 4096 7月 29 15:23 adt-bundle-linux-x86_64-20130729
-rw-rw-r-- 1 bixiaopeng bixiaopeng 458006784 8月 20 20:59 adt-bundle-linux-x86_64-20130729.zip

3.配置环境变量

vim ~/.bashrc  把下面这些环境变量加进去
export ANDROID_SDK=/home/bixiaopeng/soft/adt-bundle-linux-x86_64-20130729/sdkexport PATH=$ANDROID_SDK/platform-tools:$ANDROID_SDK/tools:$PATH

4.测试一下

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ adb shell
error: device not found

返回以上信息就表明你配置成功了

二. 使用android提供的eclipse

使用android提供的绑定ADT的eclipse开发,这样就不用在eclipse里安装ADT插件了

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/adt-bundle-linux-x86_64-20130729$ ls
eclipse sdk

三. 使用Android Studio

1. 下载地址:http://developer.android.com/sdk/installing/studio.html
我下载的是: Android Studio v0.2.xfor Linux

2. 下载下来后怎么样打开Android Studio呢?
#  到android-studio/bin目录下执行studio.sh

bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft$ cd android-studio/bin
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ ls -al
总用量 128
drwxr-x--- 2 bixiaopeng bixiaopeng 4096 8月 21 13:24 .
drwxr-x--- 7 bixiaopeng bixiaopeng 4096 7月 12 00:27 ..
-rw-r----- 1 bixiaopeng bixiaopeng 136 7月 11 23:48 appletviewer.policy
-rwxr-x--- 1 bixiaopeng bixiaopeng 22791 7月 11 23:48 fsnotifier
-rwxr-x--- 1 bixiaopeng bixiaopeng 29155 7月 11 23:48 fsnotifier64
-rw-r----- 1 bixiaopeng bixiaopeng 4176 7月 11 23:48 idea.png
-rw-r----- 1 bixiaopeng bixiaopeng 6913 7月 11 23:48 idea.properties
-rwxr-x--- 1 bixiaopeng bixiaopeng 281 7月 11 23:48 inspect.sh
-rw-r----- 1 bixiaopeng bixiaopeng 8531 7月 11 23:48 libbreakgen64.so
-rw-r----- 1 bixiaopeng bixiaopeng 6807 7月 11 23:48 libbreakgen.so
-rw-rw-r-- 1 bixiaopeng bixiaopeng 0 8月 21 13:24 libpeerconnection.log
-rw-r----- 1 bixiaopeng bixiaopeng 2275 7月 11 23:48 log.xml
-rw-r----- 1 bixiaopeng bixiaopeng 282 7月 11 23:48 studio64.vmoptions
-rwxr-x--- 1 bixiaopeng bixiaopeng 6505 7月 11 23:48 studio.sh
-rw-r----- 1 bixiaopeng bixiaopeng 290 7月 11 23:48 studio.vmoptions
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ sh studio.sh

提示:JDK一定要用1.6的,第一次打开的时候会让你指定JDK1.6的路径

3.配置Android Studio环境变量

#查看路径
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ pwd
/home/bixiaopeng/soft/android-studio/bin
#编辑.bashrc
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ vim ~/.bashrc
#在底部增加下面的配置
export ANDROID_STUDIO=/home/bixiaopeng/soft/android-studio/bin
export PATH=${ANDROID_STUDIO}:$PATH
#让配置立即生效
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~$ source ~/.bashrc
#在任意路径下都可以直接打开studio
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/soft/android-studio/bin$ cd ~
bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~$ studio.sh

【玩转Ubuntu】02. Ubuntu上搭建Android开发环境的更多相关文章

  1. 如何在Windows上搭建Android开发环境

    Android开发越来越火,许多小伙伴们纷纷学习Android开发,学习Android开发首要任务是搭建Android开发环境,由于大家 主要实在Windows 上开发Android,下面就详细给大家 ...

  2. 【转】在MyEclipse 8.6上搭建Android开发环境

    内容导航 第 1 页:基本环境准备 第 2 页:下载Android SDK 第 3 页:配置SDK环境变量 第 4 页:给MyEclipse安装ADT插件 第 5 页:配置MyEclipse 第 6 ...

  3. Windows上搭建android开发环境

    在搭建android开发环境时需要四部分内容,框架如下 其中Java SDK和Eclipse在java4android中有过介绍,重点介绍ADT和Android SDK的安装. 安装Android S ...

  4. ubuntu14.04上搭建android开发环境

    这几天心血来潮,想在ubuntu上写写android软件.所以就上网找些资料在ubuntu上搭建android环境.结果要么时不完整的,要么就是过时的. 所以我把我搭建android环境的过程写下了, ...

  5. Ubuntu 14.04下搭建 Android 开发环境(1) -JDK安装

    1.下载最新的jdk安装,地址:http://www.oracle.com/technetwork/java/javase/downloads/ 2.解压jdk-8u20-linux-x64.gz,我 ...

  6. 【转】在NetBeans上搭建Android SDK环境

    本文将介绍在NetBeans 6.8上搭建Android SDK环境,目前Android在Netbeans上进行开发需要借助nbandroid的平台插件. 我们刚刚介绍过<MyEclipse上搭 ...

  7. 在Eclipse下搭建Android开发环境教程

    我们昨天向各位介绍了<在NetBeans上搭建Android SDK环境>,前不久也介绍过<在MyEclipse 8.6上搭建Android开发环境>, 都受到了读者的欢迎.但 ...

  8. 【转】在Eclipse下搭建Android开发环境教程

    本文将全程演示Android开发环境的搭建过程,无需配置环境变量.所有软件都是写该文章时最新版本,希望大家喜欢.   一 相关下载 三 Eclipse配置 (1)Java JDK下载 1 安装andr ...

  9. OK335xS Ubuntu 12.04.1 版本 Android 开发环境搭建

    /******************************************************************************************** * OK33 ...

随机推荐

  1. 【Linux CentOS 在虚拟机中XShell出现: (port 22): Connection failed.】

    原因:没安装openssh-server组件!!!!!!!!!! 解决办法:yum install openssh-server 查看openssh-server是否启动: $:ps -ef |gre ...

  2. 【具体数学--读书笔记】1.1 The Power of Hanoi

    这一节借助汉诺塔问题引入了"Reccurent Problems". (Reccurence, 在这里解释为“the solution to each problem depend ...

  3. hdu 1050 Moving Tables_贪心

    题意:你搬n个桌子,桌子从一个地方搬到另一个地方,走廊只允许同时一个桌子通过,教室分布在两边,奇数在一边,偶数在一边,当桌子不冲突时可以同时搬运,冲突时要等别的那个桌子搬完再搬. 思路:因为奇数桌子在 ...

  4. poj 1458 Common Subsequence_最长公共子串

    题意:略 求最长公共子串 #include<iostream> #include<cstdio> #include<string> using namespace ...

  5. flex-linkbutton

    LinkButton 控件是没有边框的 Button 控件,当用户将鼠标移动到该控件位置时,其内容将加亮显示.这些特征通常借助包含在浏览器页面中的 HTML 链接进行展示.为使 LinkButton ...

  6. Hadoop 6、第一个mapreduce程序 WordCount

    1.程序代码 Map: import java.io.IOException; import org.apache.hadoop.io.IntWritable; import org.apache.h ...

  7. sql的基本查询语句

    --------------------------------------------基本常用查询-------------------------------------- 自己简单练习做了个表. ...

  8. Emmet 插件使用教程

    1)使用 Emmet 生成 HTML 的语法详解生成 HTML 文档初始结构 HTML 文档的初始结构,就是包括 doctype.html.head.body 以及 meta 等内容.你只需要输入一个 ...

  9. javascript必知必会之prototype

    本博客所有内容采用 Creative Commons Licenses 许可使用. 引用本内容时,请保留 朱涛, 出处 ,并且 非商业 . 点击 RSS 进行订阅.(推荐使用 google reade ...

  10. Android学习之listview的下拉刷新、上拉载入

    本例是在上例的基础上完成的.本例实现的listview上拉载入.下拉刷新功能,是在开源网站上别人写好的listview,主要是对listview的控件进行重写,添加了footer和header. 1. ...