android2.3 api demo 学习系列(7)--App/Activity/Hello World

学习android当然不能少了HelloWorld,接下来我们就来实现经典的Hello World

1、layout 文件

 

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="match_parent"
  	android:layout_height="match_parent"
  	android:gravity="center_vertical|center_horizontal"
	android:text="@string/app_activity_hello_world_text"/>

 

 2、string.xml

 

<string name="app_activity_hello_world_lable">App/Activity/Hello World</string>
    <string name="app_activity_hello_world_text">Hello<i>World</i></string>

 

 3、HelloWorld activity

 

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.app_activity_hello_world);
	}

 

 最后不要忘记在 manifest中加入helloworld activity 效果图如下:


android2.3 api demo 学习系列(7)--App/Activity/Hello World_第1张图片

你可能感兴趣的:(android,api,demo)