WEB开发网
开发学院手机开发Android 开发 Android 开发入门第一篇 阅读

Android 开发入门第一篇

 2010-05-08 18:39:00 来源:WEB开发网   
核心提示:最近Android挺火的,可惜刚毕业,Android 开发入门第一篇,温饱才刚刚解决,还没能力买台Android手机,比 J2ME上的LWUIT略快(两者类似,Android提供了GUI设计工具),所以目前的开发只能用模拟器来做,

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

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

<a target=Android入门第一篇" src="http://tech.cncms.com/tech/UploadPic/2010911/20109110939735.jpg" width="326" height="172" border="0" onload="return imgzoom(this,550);" style="cursor:pointer;" onclick="javascript:window.open(this.src);"/>

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

< ?xml

version="1.0" encoding="utf-8"? >

< LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent" >

< EditText android:text="EditText01"

android:layout_height="wrap_content" android:layout_width="fill_parent"

android:id="@+id/edtInput" >< /EditText >

< LinearLayout android:id="@+id/LinearLayout01"

android:layout_height="wrap_content" android:layout_width="fill_parent"

android:gravity="center" >

< Button android:layout_width="wrap_content"

android:layout_height="wrap_content" android:text="Show"

android:id="@+id/btnShow" >< /Button >

< Button android:layout_width="wrap_content"

android:layout_height="wrap_content" android:text="Clear"

android:id="@+id/btnClear" >< /Button >

< /LinearLayout >

< /LinearLayout >

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

1 2  下一页

Tags:Android 开发 入门

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