WEB开发网
开发学院手机开发Android 开发 Android 开发环境的构建方法总结 阅读

Android 开发环境的构建方法总结

 2010-03-26 15:58:00 来源:WEB开发网   
核心提示:your HelloAndroid class. The bold items are lines that have been added.下面让我们修改一下代码:view plaincopy to clipboardprint?package com.android.helloandroid;import andr
your HelloAndroid class. The bold items are lines that have been added.

下面让我们修改一下代码:

view plaincopy to clipboardprint?

package com.android.helloandroid;

import android.app.Activity;

import android.os.Bundle;

import android.widget.TextView;

public class HelloAndroid extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

TextView tv = new TextView(this);

tv.setText(”Hello, Android”);

setContentView(tv);

}

}

package com.android.helloandroid;

import android.app.Activity;

import android.os.Bundle;

import android.widget.TextView;

public class HelloAndroid extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

TextView tv = new TextView(this);

tv.setText(”Hello, Android”);

setContentView(tv);

}

}

执行代码:Hello,Android

Eclipse的插件使得你的程序很容易运行。选择Run>Open Run Dialog菜单。(Eclipse3.4版本中,菜单为Run->Run Configurations)可以看到这样的对话框

下一步,选择“Android Application”,点击在左上角(按钮像一张纸上有个“+”号)或者双击“Android Application”。 有个新的选项“New_configuration”。

将名字改得更形象一点,如“Hello,Android”,然后按Browse按钮选择你的项目,(如果你Eclipse里有多个Android项 目需要打开,确定要选择正确)插件会会自动扫描你项目里的活动子类,然后在“活动”的下拉菜单里加载。如果你的“Hello,Android”项目只有一 个,它将被设置为默认项目,然后你可以继续。

点击“Apply”按钮,这里有个例子:

这样就可以了,点击“Run”按钮,Android的模拟器启动。一启动你的程序就会出现,当一切OK,你可以看到:

上一页  1 2 3 4 5 6 7 8  下一页

Tags:Android 开发 环境

编辑录入:coldstar [复制链接] [打 印]
赞助商链接