Hello Android例子的内部细节
在这里,我们将学习Hello Android例子的内部细节或工作原理。
Android应用程序包含不同的组件,如Java源代码,字符串资源,图像,清单文件,APK文件等。让我们来了解一下Android应用程序的项目结构。
Java源代码
让我们来看看由Eclipse IDE创建的Java源文件:
package com.example.helloandroid;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;
public class MainActivity extends Activity {//(1)
@Override
protected void onCreate(Bundle savedInstanceState) {//(2)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);//(3)
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {//(4)
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
(1) Activity 是一个Java类,它在屏幕上创建并显示一个默认窗口,我们可以在窗口中放置不同的组件,例如按钮、编辑框、文本视图、下拉菜单等。它类似于Java AWT的框架。
它为Activity提供了生命周期方法,例如onCreate、onStop、onResume等。
(2) onCreate方法 在Activity类被首次创建时调用。
(3) setContentView(R.layout.activity_main) 提供了关于我们布局资源的信息。在这里,我们的布局资源是在activity_main.xml文件中定义的。
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
</RelativeLayout>
如您所见,一个TextView是由框架自动创建的。但是这个字符串的消息是在strings.xml文件中定义的。 @string/hello_world 提供有关TextView消息的信息。hello_world属性的值是在strings.xml文件中定义的。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">helloandroid</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
</resources>
您可以从此文件更改hello_world属性的值。
生成的R.java文件
这是一个自动生成的文件,包含了res目录中所有资源的ID。它是由aapt(Android资源打包工具)生成的。每当您在activity_main上创建任何组件时,R.java文件中会创建相应的ID,稍后可以在Java源文件中使用它。
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.example.helloandroid;
public final class R {
public static final class attr {
}
public static final class drawable {
public static final int ic_launcher=0x7f020000;
}
public static final class id {
public static final int menu_settings=0x7f070000;
}
public static final class layout {
public static final int activity_main=0x7f030000;
}
public static final class menu {
public static final int activity_main=0x7f060000;
}
public static final class string {
public static final int app_name=0x7f040000;
public static final int hello_world=0x7f040001;
public static final int menu_settings=0x7f040002;
}
public static final class style {
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
API 11 theme customizations can go here.
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
API 14 theme customizations can go here.
*/
public static final int AppBaseTheme=0x7f050000;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f050001;
}
}
APK文件
APK文件是由框架自动创建的。如果你想在移动设备上运行Android应用程序,需要将其传输并安装。
资源
它包含包括activity_main、strings、styles等资源文件。
清单文件
它包含有关包的信息,包括活动、服务、内容提供器等组件。
有关清单文件更多信息,请访问这里: AndroidManifest.xml文件 。