预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共31页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

Android学习笔记(1)-永远不变的HelloWorld Google的AndroidSDK发布也有一段时间了,一直想研究一下却苦于找不到时间。利用这个周未,开始强迫自己再次进入学习状态,原因很简单:我看好开放的gPhone。 SDK的下载与安装并不复杂,网上也有不少同学已经进入状态了,我就不再重复了吧。 今天主要讨论的,还是永远不变的话题:HelloWorld.1.最简单的HelloWorld 安装了SDK后,直接生成一个AndroidProject,一句代码不用写,就能跑出一个最简单的HelloWorld例程。HYPERLINK"http://action.vogate.com/c/c.php?r=http%3A//www.sf.org.cn/Android/lumen/Index.html&aid=6642&sid=6235007045036118&click=1&url=http%3A//www.china6767.cn&v=0&s=http%3A//www.sf.org.cn/Android/lumen/20976.html&rn=112290&k=%u6211%u4EEC"\o"新浪Sina/宏界Vogate提供"\t"_blank"我们看一下它的代码: publicvoidonCreate(Bundleicicle)...{super.onCreate(icicle);setTheme(android.R.style.Theme_Dark);setContentView(R.layout.main);} 看上去实在很简单,只有两句话而已。关键在这个R.layout.main上,凭直觉,这应该是定义的HYPERLINK"http://action.vogate.com/c/c.php?r=http%3A//www.sf.org.cn/Android/lumen/Index.html&aid=3811&sid=6235007045036118&click=1&url=http%3A//www.danone-institute.org.cn/&v=0&s=http%3A//www.sf.org.cn/Android/lumen/20976.html&rn=315085&k=%u8D44%u6E90"\o"新浪Sina/宏界Vogate提供"\t"_blank"资源。的确,在R.java中只是定义了一个staticint而已,真正的资源描述在res/layout/main.xmlHYPERLINK"http://action.vogate.com/c/c.php?r=http%3A//www.sf.org.cn/Android/lumen/Index.html&aid=6581&sid=6235007045036118&click=1&url=http%3A//down.mie168.com&v=0&s=http%3A//www.sf.org.cn/Android/lumen/20976.html&rn=362350&k=%u6587%u4EF6"\o"新浪Sina/宏界Vogate提供"\t"_blank"文件里(注意:这里的R.java不要手工HYPERLINK"http://action.vogate.com/c/c.php?r=http%3A//www.sf.org.cn/Android/lumen/Index.html&aid=1185&sid=6235007045036118&click=1&url=http%3A//www.jizhe.com.cn&v=0&s=http%3A//www.sf.org.cn/Android/lumen/20976.html&rn=575433&k=%u7F16%u8F91"\o"新浪Sina/宏界Vogate提供"\t"_blank"编辑,每次buildproject时它都会根据res下的资源描述被自动修改)。 <?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"><TextViewid="@+id/txt"android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="HelloWorld"