Big Bug Ban

兴趣 践行 创新

Archive for 7月, 2010

Android开发日志 开发环境安装

 

本文为princehaku原创   已经参加   “首届 Google 暑期大学生博客分享大赛——2010 Android 篇”

如果您忘了我的地址  请使用google搜索  “Android开发日志”

其实呢..

还没有装好..因为site不能访问了..


不能访问. 得想其他办法 了..

http://androidappdocs.appspot.com/index.html

这个可以打开..但是下载后更新不能..

个方式.下载到桌面安装…

更新ing..

稍后继续…

<!–more–>

下载到桌面也不行..速度太慢了..

于是乎…抓包..找到了真实的下载地址

2.2版

文档  http://dl-ssl.google.com/android/repository/docs-2.2_r01-linux.zip

API  http://dl-ssl.google.com/android/repository/google_apis-8_r02.zip

plantform http://dl-ssl.google.com/android/repository/android-2.2_r02-windows.zip

1.5版

plantform http://dl-ssl.google.com/android/repository/android-1.5_r04-windows.zip

下载之后放入sdk目录下的temp..就可以安装了..(如果没有就新建一个)

另外..还有个nbandroid-0.3 netbeans的插件

装好后选tool – plantform     ADD    google android  然后选择sdk里面的目录就可以了

————————–

如果装好后发现不能选平台…

首先请创建一个虚拟的设备..

其次就可能是插件的问题…nbandroid(点击下载0.2版)成低一点的版本的就可以了…

我用的是0.1版

在插件面板 加入更新的源

http://kenai.com/downloads/nbandroid/updates.xml

然后再更新,就可以安装了

———————————————————————

运行下.hello world


/**
 * Copyright (c) 2010 princehaku
 * All right reserved.
 * Author princehaku
 * Site http://haku.hk
 * Created on : 2010-08-01, 08:01 AM
 */
package org.me.demo;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

/**
 *
 * @author princehaku
 */
public class MainActivity extends Activity {

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        // ToDo add your GUI initialization code here
        TextView tv = new TextView(this);
         tv.setText("Hello, Android");
         setContentView(tv);

    }

}

Written by princehaku

7月 31st, 2010 at 6:29 下午