今天先弄个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>
时间: 2024-11-07 23:06:19