<?xml version="1.0" encoding="utf-8"?>
这是一个xml文档,第一行是xml的文档声明,version="1.0"表示用xml1.0版本进行解析,文档的字符编码格式为utf-8。
学习XML的相关知识:
http://www.cnblogs.com/xdp-gacl/p/3928289.html
xmlns:android="http://schemas.android.com/apk/res/android"
声明xml命名空间。xmlns意思为“xml namespace”.冒号后面是给这个引用起的别名。
schemas是xml文档的两种约束文件其中的一种,规定了xml中有哪些元素(标签)、元素有哪些属性及各元素的关系,当然从面向对象的角度理解schemas文件可以认为它是被约束的xml文档的“类”或称为“模板”。
match_parent与fill_parent
FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which means that the view wants to be as big as its parent (minus padding)
pi=4*Math.atan(1);为什么会等于pi
原因:调用Math模块的atan函数。传入1为参数。此函数为反正切函数,π/4的正切是1。Math.atan(1)=π/4
所以4*(π/4)=π
答案引用至:http://math.stackexchange.com/questions/1211722/how-does-atan1-4-equal-pi
Android中foreach怎么写?
一般写法:
for(inti=0;i<10;i++){
btn[i].setOnClickListener(actionPerformed);
}
foreach写法。
for(Buttoni:btn){
i.setOnClickListener(actionPerformed);
}