Android入门第一篇

最近Android挺火的,可惜刚毕业,温饱才刚刚解决,还没能力买台Android手机,所以目前的开发只能用模拟器来做。。。就目前 Android SDK 1.5 + Eclipse + ADT的开发方式来说,跟J2ME最大的区别在于UI的不同,当然Android比J2ME多出很多东西,多出的是J2ME无法作对比的。。。。刚开始做Android开发,很多人都是先写个简单的界面,再加点控制代码,本文就是这样。

本文所讲到的是LinearLayout + Button + EditText + AlertDialog的简单使用。


图


Activity以LinearLayout排列,共用到两个LinearLayout,第一个是用于全窗体,第二个用于存放两个Button,第二个LinearLayout放在EditText控件下面,以下给出main.xml的代码:

  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. <EditTextandroid:text="EditText01"android:layout_height="wrap_content"android:layout_width="fill_parent"android:id="@+id/edtInput"></EditText>
  8. <LinearLayoutandroid:id="@+id/LinearLayout01"android:layout_height="wrap_content"android:layout_width="fill_parent"android:gravity="center">
  9. <Buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Show"android:id="@+id/btnShow"></Button>
  10. <Buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Clear"android:id="@+id/btnClear"></Button>
  11. </LinearLayout>
  12. </LinearLayout>


main.xml用于Activity的UI设计,目前设计起来的速度,比 J2ME上的LWUIT略快(两者类似,Android提供了GUI设计工具),比WM上的.NET CF略慢(.NETCF 是RAD)。

接下来给出JAVA代码:


  1. packagecom.studio.android;
  2. importandroid.app.Activity;
  3. importandroid.app.AlertDialog;
  4. importandroid.os.Bundle;
  5. importandroid.view.View;
  6. importandroid.view.View.OnClickListener;
  7. importandroid.widget.Button;
  8. importandroid.widget.EditText;
  9. publicclassHelloAndroidextendsActivity{
  10. /**Calledwhentheactivityisfirstcreated.*/
  11. ButtonbtnShow;
  12. ButtonbtnClear;
  13. EditTextedtInput;
  14. @Override
  15. publicvoidonCreate(BundlesavedInstanceState){
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.main);
  18. btnShow=(Button)findViewById(R.id.btnShow);//控件与代码绑定
  19. btnClear=(Button)findViewById(R.id.btnClear);//控件与代码绑定
  20. edtInput=(EditText)findViewById(R.id.edtInput);//控件与代码绑定
  21. btnShow.setOnClickListener(newClickListener());//使用点击事件
  22. btnClear.setOnClickListener(newClickListener());//使用点击事件
  23. }
  24. classClickListenerimplementsOnClickListener
  25. {
  26. publicvoidonClick(Viewv)
  27. {
  28. if(v==btnShow)
  29. {
  30. newAlertDialog.Builder(HelloAndroid.this)
  31. .setIcon(android.R.drawable.ic_dialog_alert)
  32. .setTitle("Information")
  33. .setMessage(edtInput.getText())
  34. .show();
  35. }
  36. elseif(v==btnClear)
  37. {
  38. edtInput.setText("HelloAndroid");
  39. }
  40. }
  41. }
  42. }

你可能感兴趣的:(android)