WEB开发网
开发学院手机开发Ophone 开发 从开发者角度比较Windows Mobile与Ophone 阅读

从开发者角度比较Windows Mobile与Ophone

 2010-05-06 21:52:00 来源:WEB开发网   
核心提示:帮我们把这些资源都管理起来,内容资源化的作用是很明显的,从开发者角度比较Windows Mobile与Ophone(3),做国际化方便了,使用同一个资源的时候也方便也更节省空间(全局的引用),如果不指定,运行起来是默认空白的,res文件夹中内容变化,R.java都会重新编译同步更新
帮我们把这些资源都管理起来,内容资源化的作用是很明显的,做国际化方便了,使用同一个资源的时候也方便也更节省空间(全局的引用),res文件夹中内容变化,R.java都会重新编译同步更新,所以这个类不需要你去手动更新了。

最后是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="http: p=" " android?="">< res apk schemas.android.com> android="http:>

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"

上一页  1 2 3 4 5  下一页

Tags:开发者 角度 比较

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