Google Android手机开发第一次体验
2010-05-12 16:06:00 来源:WEB开发网4.创建一个Android Project,在工程名称中填写HelloAndroid,在Build target中选择Android 2.1选项,Application name也叫HelloAndroid,Package name写com.plter.helloandroid,Create Activty中填写HelloAndroid,Min SDK Version中填写7,然后点击Finish按钮就可以创建此工程了。如下图所示:
5.双击打开res/layout/main.xml文件,如下图所示:
6.我们选中生成的文本,然后在其属性面板中的ID栏中填写@+id/outtext,然后再拖入一个Button组件,将其ID改为@+id /helloBtn,将其Text修改为Hello Android。
7.打开HelloAndroid.java文件,将其中代码修改为如下所示:
package com.plter.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class HelloAndroid extends Activity {
private Button helloAndroidBtn;
private TextView outTxtView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
helloAndroidBtn=(Button)findViewById(R.id.helloBtn);
outTxtView=(TextView)findViewById(R.id.outtext);
helloAndroidBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
outTxtView.setText("Hello Android,i love you");
}
});
}
}
8.按F11运行此程序,便可在模拟器上进行测试,效果如下所示:
更多精彩
赞助商链接