Android Change Activity
Like change page
Change activity first we should create a activity ,
we should extends class activity and override onCreate() , then configure information in AndroidMainfest.xml .
there two importment attrbutes call name and label ,name attrbute tell android system how to find activity and the label eauql the title of the activity .
package com.example.chatdemo; import android.app.Activity; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; /** * 1.a activity have to extends Activity 1 * 2.override onClreate() method * 3. configure information on AndroidMainfest.xml * <activity android:name="com.example.chatdemo.MainActivity" android:label="@string/app_name" > </activity> this means default activity <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> * */ public class chat extends ActionBarActivity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //setContenView() when execute this activity will dispaly follow layout setContentView(R.layout.chat); } }
if you want go to the activity should set a onclick event
Intent intent = new Intent(); intent.setClass(this, chat.class); startActivity(intent);
use class Intent pack activity class finally use method startActivity() to start a activity .
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。