从开发者角度比较Windows Mobile与Ophone
2010-05-06 21:52:00 来源:WEB开发网最后是AndroidManifest.xml. 你每次添加一个Acivity都需要在这个文件中描述一下。
看一下代码:
view plaincopy to clipboardprint?
publicclassHelloWolrdextendsActivity{
/**Calledwhentheactivityisfirstcreated.*/
@Override
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
// 指定这个Activity的界面布局,如果不指定,运行起来是默认空白的,如何布局后面讲述
setContentView(R.layout.main);
//这句话就是用来获取layout中设置的界面控件对象的,这个id是在button中指定的
android:id="@+id/button_normal"
Buttonbtn=(Button)this.findViewById(R.id.button_normal);
// 为btn添加响应函数
btn.setOnClickListener(newOnClickListener(){
publicvoidonClick(Viewarg0){
TextViewtv=(TextView)this.findeViewbyId(R.id.text);
tv.setText(R.id.hello);
}
}
);
}
}
布局文件mani.xml
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
android:text="@string/clickme"
android:layout_width="wrap_content"
- ››比较JavaScript中的集合及其检索效率
- ››开发者在App Store上赚的钱比在Android Market上多...
- ››开发者应深入学习的10个Android开源应用项目
- ››比较官方iPhone SDK和开源工具链
- ››开发者眼中的iPhone与Android
- ››开发者或想使用的10个Android2.2新特性
- ››开发者必看的Google Market全球赚钱分享计划
- ››比较两个DataTable是否相等(网上流传的通病)
- ››比较C#语言与Java语言程序
- ››开发者关于 JAX-RPC 的介绍,第 1 部分: 了解 JAX...
- ››开发者关于 JAX-RPC 的介绍,第 2 部分: 研究 JAX...
- ››比较 IBM DB2 和 IBM solidDB SQL 过程,第 1 部分...
更多精彩
赞助商链接