android的Activity

来源:互联网 发布:mac os 10.10升级10.11 编辑:程序博客网 时间:2024/04/28 16:03

1、当一个activity第一次运行的时候就会调用oncreate方法

* 1、创建activity的要点,一个activity就是一个类,并且这个类要继承activity

 * 2、需要复写oncreate方法

 * 3、每一个activity都需要在AndroidManifest.xml文件中进行配置

 * 4、为activity添加必要的控件

2Activity的生命周期:

android的Activity - 小鲍 - 小鲍
 

In general the movement through an activity's lifecycle looks like this:

Method

Description

Killable?

Next

onCreate()

Called when the activity is first created. This is where you should do all of your normal static set up: create views, bind data to lists, etc. This method also provides you with a Bundle containing the activity's previously frozen state, if there was one.

Always followed by onStart().

No

onStart()

    

onRestart()

Called after your activity has been stopped, prior to it being started again.

Always followed by onStart()

No

onStart()

onStart()

Called when the activity is becoming visible to the user.

Followed by onResume() if the activity comes to the foreground, or onStop() if it becomes hidden.

No

onResume()or onStop()

    

onResume()

Called when the activity will start interacting with the user. At this point your activity is at the top of the activity stack, with user input going to it.

Always followed by onPause().

No

onPause()

onPause()

Called when the system is about to start resuming a previous activity. This is typically used to commit unsaved changes to persistent data, stop animations and other things that may be consuming CPU, etc. Implementations of this method must be very quick because the next activity will not be resumed until this method returns.

Followed by either onResume() if the activity returns back to the front, or onStop() if it becomes invisible to the user.

Yes

onResume()or
onStop()

onStop()

Called when the activity is no longer visible to the user, because another activity has been resumed and is covering this one. This may happen either because a new activity is being started, an existing one is being brought in front of this one, or this one is being destroyed.

Followed by either onRestart() if this activity is coming back to interact with the user, or onDestroy() if this activity is going away.

Yes

onRestart()or
onDestroy()

onDestroy()

The final call you receive before your activity is destroyed. This can happen either because the activity is finishing (someone called finish() on it, or because the system is temporarily destroying this instance of the activity to save space. You can distinguish between these two scenarios with the isFinishing() method.

Yes

nothing

 

 

3Android对话框形式的Activity只需在manifest.xml中配置Activity时添加属性:

         androidtheme=”@android:style/Theme.Dialog”/>即可

例如我如果想让SecondActivity以对话框形式显示,在manifest.xml中配置时为:

         <activity android:name=”.SecondActivity”

                      android:lable=”SecondActivity”

                      android:theme=”@android:style/Theme.Dialog”/>

0 0
原创粉丝点击