Android HelloWord 编写方式介绍
2010-02-10 06:45:00 来源:WEB开发网核心提示:相信学过编程的人员都对各种语言的helloword程序的编写方式记忆犹新吧,在这里我们就为大家详细介绍一下有关Android HelloWord的编写方式,Android HelloWord 编写方式介绍,方便大家对这一操作系统编写方式的理解,先说说整个程序要做哪些内容吧,2.我们要显示一个按钮,难后点击这个按钮就转到
相信学过编程的人员都对各种语言的helloword程序的编写方式记忆犹新吧。在这里我们就为大家详细介绍一下有关Android HelloWord的编写方式,方便大家对这一操作系统编写方式的理解。
先说说整个程序要做哪些内容吧,简单helloword 通过一个按钮点击在另一个acitvity出现文本Hello xiaoshengDAI
说下Android HelloWord做的步骤吧:
1.首先新建项目,我这边主要是测试Layout所以项目名就叫这个了。
2.我们要显示一个按钮,难后点击这个按钮就转到其他activity显示Hello xiaoshengDAI,新建类Layout主要来显示第一个activity即button,
1).在main.xml文件中进行配置
Java代码
- < ?xml version="1.0" encoding="utf-8"?>
- < LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- < Button android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="来点我吧"/>
- < /LinearLayout>
- < ?xml version="1.0" encoding="utf-8"?>
- < LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- < Button android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="来点我吧"/>
- < /LinearLayout>
[]
更多精彩
赞助商链接