码迷,mamicode.com
首页 > 移动开发 > 详细

开始学习Android

时间:2016-04-06 00:28:29      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

今天先弄个HelloWord,坚持每一天学习一点。

开发工具Eclipse,完成效果如下。

技术分享

strings.xml:此文件修改在界面上显示的文字信息

main.xml:此文件作用是页面布局

本次例子:

strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello World</string>
    <string name="app_name">第一个Android程序</string>
</resources>

main.xml

<?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"
    >
<TextView  
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    />
</LinearLayout>

开始学习Android

标签:

原文地址:http://www.cnblogs.com/codestyle/p/5357515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!