Android 学习笔记
2010-03-31 21:18:00 来源:WEB开发网核心提示:R.*这个资源文件是在你编译后Android SDK自动生成的文件,其中参数是来自于res/layout/main.xml文件,Android 学习笔记,当layout建立时,Android就使用这些参数来填充 layout
R.*这个资源文件是在你编译后Android SDK自动生成的文件,其中参数是来自于res/layout/main.xml文件。当layout建立时,Android就使用这些参数来填充 layout。
下面解析这个layout的main.xml文件内容:
1: <?xml version="1.0" encoding="utf-8"?>
2: <RelativeLayout xmlns: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: android:background="#ffc5d1d4"
7: >
8: <com.google.android.maps.MapView
9: android:id="@+id/mapmain"
10: android:layout_width="fill_parent"
11: android:layout_height="fill_parent"
12: android:clickable="true"
13: android:apiKey="0P18K0TAE0dO2GifdtbuScgEGLWe3p4CYUQngMg"
14: />
15: <TextView
16: android:id="@+id/lblMicroJobsToday"
17: android:layout_width="wrap_content"
18: android:layout_height="wrap_content"
19: android:text="MicroJobs for You Today Near:"
20: android:textSize="20dp"
21: android:textColor="#FF000000"
22: android:layout_centerHorizontal="true"
23: android:gravity="top"
24: />
25: <Spinner
26: android:id="@+id/spnLocations"
27: android:layout_width="250dp"
28: android:layout_height="wrap_content"
29: android:layout_centerHorizontal="true"
30: android:layout_marginTop="2dp"
31: android:layout_below="@+id/lblMicroJobsToday"
32: />
33: <Button
34: android:id="@+id/btnShowList"
35: android:layout_width="150dp"
36: android:layout_height="wrap_content"
37: android:text="List Jobs"
38: android:textSize="20sp"
39: android:gravity="center_vertical"
40: android:layout_centerInParent="true"
41: android:layout_alignParentBottom="true"
42: />
43: </RelativeLayout>
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接