Android 学习笔记
2010-03-31 21:18:00 来源:WEB开发网android:apiKey
这个属性是mapview独一无二的属性。你需要从google得到一个api钥匙,就好像你要添加一个google map到你的web页面。第7,9章会告诉你如何得到这个map api钥匙.
Section starting <TextView
此view就类似于一个Lable。告诉用户他在看什么。
android:text
label的内容。
android:textSize
字符的大小。
android:textColor
字符的颜色。
android:layout_centerHorizontal
字符的排列方向是否居中。
android:gravity
字符的“重心”,可以设置为top,center_vertical,bottom。要注意的是 layout_centerHorizontal是针对parent而言,而center_vertical是针对在此label里面的字符的排列情况。
要看更多的textView属性就去查看sdk把。
Section starting <Spinner
这是一个标准的android控件用来让用户选择最近的位置或者其他记录在用户配置文件里的位置。
android:layout_below
这个属性控制了spinner的位置。表示了这个元素是位于某某id元素之后的。
Section starting <Button
一个按钮。用来触发显示工作信息列表。
android:layout_width and android:layout_height
按钮大小。
android:text
按钮上的名称。
android:textSize
text的字符大小。
android:layout_centerInParent
按钮位置是否居中。
android:layout_alignParentBottom
按钮在parent里的位置居下部。同样可以用另一个表达方法:
android:gravity=bottom.
android的尺寸规则:
在例子里我们使用了scaled pixels(sp),但是android使用了大量的尺寸可供选择。
更多精彩
赞助商链接