WEB开发网
开发学院手机开发Android 开发 Android HelloWord 编写方式介绍 阅读

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代码

  1. < ?xml version="1.0" encoding="utf-8"?>   
  2. < LinearLayout xmlns:android=
    "http://schemas.android.com/apk/res/android"   
  3. android:orientation="vertical"   
  4. android:layout_width="fill_parent"   
  5. android:layout_height="fill_parent">   
  6. < Button android:id="@+id/button1"   
  7. android:layout_width="wrap_content"   
  8. android:layout_height="wrap_content"   
  9. android:text="来点我吧"/>   
  10. < /LinearLayout>   
  11. < ?xml version="1.0" encoding="utf-8"?> 
  12. < LinearLayout xmlns:android=
    "http://schemas.android.com/apk/res/android" 
  13. android:orientation="vertical" 
  14. android:layout_width="fill_parent" 
  15. android:layout_height="fill_parent">   
  16. < Button android:id="@+id/button1"   
  17. android:layout_width="wrap_content"   
  18. android:layout_height="wrap_content"   
  19. android:text="来点我吧"/>   
  20. < /LinearLayout> 

1 2 3 4  下一页

Tags:Android HelloWord 编写

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