WEB开发网
开发学院手机开发Android 开发 Android 学习笔记 阅读

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>

1 2 3 4 5 6  下一页

Tags:Android 学习 笔记

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