首页 > 代码库 > Android Change Activity
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 .
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。