簡單實現兩個activity相互跳轉
下面簡單實現兩個activity之間相互跳轉。我們首先要明白的是一個MyActivity就是一個類,而這個類繼承Activity類。實現兩個activity之間的跳轉,則我們需要建立兩個activity子類。
首先看下簡單的佈局檔案:
第一個activity:
第二個activity:
上面已經完成了兩個activity程式碼部分,但是在執行Android程式,會報錯,因為otherActivity沒有在AndroidMainfest.xml中註冊,關於該檔案的作用,這裡不作說明。
下面註冊新建activity的資訊:
然後執行程式,出現我們想要的結果。上面只是應用Intent最簡單的應用,還有很多其他應用。
首先看下簡單的佈局檔案:
點選(此處)摺疊或開啟
- <RelativeLayout xmlns:android=" />
- xmlns:tools=" />
-
android:layout_width="match_parent"
-
android:layout_height="match_parent"
-
android:paddingBottom="@dimen/activity_vertical_margin"
-
android:paddingLeft="@dimen/activity_horizontal_margin"
-
android:paddingRight="@dimen/activity_horizontal_margin"
-
android:paddingTop="@dimen/activity_vertical_margin"
-
tools:context="com.example.android01.MainActivity" >
-
-
<TextView
-
android:id="@+id/MyText"
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content" />
-
-
<Button
-
android:id="@+id/MyButton"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent" />
- </RelativeLayout>
第一個activity:
點選(此處)摺疊或開啟
-
package com.example.android01;
-
import android.app.Activity;
-
import android.content.Intent;
-
import android.os.Bundle;
-
import android.view.View; //import android.view.View.OnClickListener;
-
import android.widget.Button;
-
-
public class MainActivity extends Activity {
-
-
@Override
-
protected void onCreate(Bundle savedInstanceState) {
-
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.activity_main);
-
-
Button myButton = (Button)findViewById(R.id.MyButton); //用findViewById獲取Button控制元件的id
-
-
myButton.setText("請點選!跳轉介面"); //設定Button控制元件上的Text
-
-
myButton.setOnClickListener(new wang()); //繫結當前的Button
-
-
}
-
-
class wang implements android.view.View.OnClickListener { //構造一個內部類,並用Intent物件進行跳轉
-
-
-
public void onClick(View v){
-
-
Intent intent = new Intent();
-
intent.setClass(MainActivity.this,otherActivity.class);//從當前activity跳轉到另一個activity
-
MainActivity.this.startActivity(intent);
-
-
}
-
-
}
- }
點選(此處)摺疊或開啟
-
package com.example.android01;
-
-
import android.app.Activity;
-
import android.content.Intent;
-
import android.os.Bundle;
-
import android.view.View;
-
import android.view.View.OnClickListener;
-
import android.widget.Button;
-
import android.widget.TextView;
-
-
public class otherActivity extends Activity {
-
-
@Override
-
protected void onCreate(Bundle savedInstanceState) {
-
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.activity_main);
-
-
TextView Mytext = (TextView)findViewById(R.id.MyText);
-
Button myButton = (Button)findViewById(R.id.MyButton); //該activity中的操作和上面activity一樣,不再贅述
-
myButton.setText("第一個Button");
-
Mytext.setText(R.string.lios);
-
myButton.setOnClickListener(new lios());
-
}
-
-
class lios implements OnClickListener{
-
-
public void onClick(View v){
-
-
Intent intent = new Intent();
-
intent.setClass(otherActivity.this,MainActivity.class);
-
otherActivity.this.startActivity(intent);
-
}
-
}
- }
下面註冊新建activity的資訊:
點選(此處)摺疊或開啟
-
<?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android=" />
-
package="com.example.android01"
-
android:versionCode="1"
-
android:versionName="1.0" >
-
-
<uses-sdk
-
android:minSdkVersion="14"
-
android:targetSdkVersion="18" />
-
-
<application
-
android:allowBackup="true"
-
android:icon="@drawable/ic_launcher"
-
android:label="@string/app_name"
-
android:theme="@style/AppTheme" >
-
<activity
-
android:name=".MainActivity"
-
android:label="@string/app_name" >
-
<intent-filter>
-
<action android:name="android.intent.action.MAIN" />
-
-
<category android:name="android.intent.category.LAUNCHER" />
-
</intent-filter>
-
</activity>
-
<activity android:name=".otherActivity" >
-
</activity>
-
</application>
-
- </manifest>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29876893/viewspace-1815036/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- android之兩個activity相互跳轉Android
- Android activity相互跳轉後臺出現兩個頁面的坑Android
- EventBus實現兩個Fragment直接的跳轉Fragment
- Activity跳轉
- 簡單的在兩個activity中傳遞資料
- Activity建立與跳轉
- Activity過渡(跳轉)動畫動畫
- activity之間的跳轉
- iOS 應用間相互跳轉iOS
- 一個簡單的選單按鈕的實現 (轉)
- css3實現div簡單跳躍效果CSSS3
- 在同一個Activity下實現兩個Fragment之間的通訊Fragment
- Android 頁面跳轉動畫的兩種實現方式Android動畫
- url跳轉的兩種實現方式 域名 80埠占用
- 選擇下拉選單項實現跳轉效果
- 兩個select下拉選單的option相互移動
- Activity 不只有跳轉。功能篇(一)
- Activity的跳轉與傳值薦
- 簡單易用的JSON與List相互轉換JSON
- 一個用C#實現的簡單http server (轉)C#HTTPServer
- 用java實現一個簡單的房屋管理程式。 (轉)Java
- Nginx 實現 Rewrite 跳轉Nginx
- AWS 兩個VPC相互連線
- 用ruby實現簡體中文和繁體中文的相互轉化
- 不重新整理頁面動態更新select選項,實現兩個select相互操作 (轉)
- PHP頁面跳轉如何實現延時跳轉PHP
- Android Activity跳轉閃屏問題Android
- js實現簡單百度分頁和兩種tab樣式切換簡單實現JS
- dom物件和jQuery物件相互轉換簡單介紹物件jQuery
- Activity A 跳轉到 Activity B,生命週期的執行過程
- 如何實現公眾號選單欄跳轉小程式
- 手寫簡單的元件化跳轉Router元件化
- BAPI的簡單實現步驟(轉)API
- 實驗3 轉移指令跳轉原理及其簡單應用程式設計程式設計
- 實現登入url跳轉
- unity實現場景跳轉Unity
- 【C++】兩個類的相互引用C++
- php實現一個簡單的socketPHP