當前位置:首頁 » 安卓系統 » 安卓如何彈出一個頁面跳轉頁面跳轉頁面

安卓如何彈出一個頁面跳轉頁面跳轉頁面

發布時間: 2022-01-13 23:36:30

① android開發,單擊按鈕之後跳轉到另一個頁面

1、首先在一個布局文件(.XML)中繪畫了一個跳轉按鈕(id為btn1):

<Button

android:id="@+id/btn1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="點擊跳轉" />

2、然後在關聯的類中聲明一個私有button名稱,如:

private Button btn1;

TIPS:在類上會添加:import android.widget.Button;

3、接著在類中onCreate的方法內執行以下操作:

(1)、給btn1賦值,即設置布局文件中的Button按鈕id進行關聯,如:

btn1 = (Button) findViewById(R.id.btn1);

(2)、給btn1綁定點擊事件:

btn1.setOnClickListener(new View.OnClickListener(){

@Override

public void onClick(View v){

}

});

TIPS:在類上會添加:import android.view.View;

(3)、 給bnt1添加點擊響應事件:

btn1.setOnClickListener(new View.OnClickListener(){

@Override

public void onClick(View v){

//Intent是一種運行時綁定(run-time binding)機制,它能在程序運行過程中連接兩個不同的組件。

//page1為先前已添加的類,並已在AndroidManifest.xml內添加活動事件(<activity android:name="page1"></activity>),在存放資源代碼的文件夾下下,

Intent i = new Intent(MainActivity.this , page1.class);

////啟動

startActivity(i);

}

});

TIPS:在類上會添加:import android.content.Intent;

4、最後,就可以就可以跳轉到下一個頁面了。

② 怎樣在android中設置點擊按鈕實現頁面跳轉

bb.setOnClickListener(new OnClickListener() {//設置監聽事件
Intent intent = new Intent();

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
intent.setClass(MainActivity.this, bb.class);
startActivity(intent);//跳入頁面

}
});

③ Android開發 單擊按鈕實現頁面跳轉

在.java文件中
//-新建Intent對象
Intent intent = new Intent();
//-指定傳遞對象,mainActivity為傳遞對象,Activity2為被傳遞對象intent.setClass(mainActivity.this,Activity2.class);
//-將Intent傳遞給Activity
startActivity(intent);
//-結束當前Activity
mainActivity.this.finish();

在AndroidManifest.xml文件中
<activity
android:name=".Activity2" >
</activity>
註:Activity2為要跳轉的頁面

在mainActivity中用setContentView(R.layout.main);與第一個界面相關聯(main.xml為第一個界面)

在Activity2中用setContentView(R.layout.main2);與要跳轉的那個界面關聯起來(main.xml為要跳轉過去的那個界面)

④ android界面跳轉怎麼實現

沒明白你的跳轉是要幹嘛!但是下面給你說下!Intent是跳轉頁面用的
你可以在Button 監聽事件裡面寫Intent in=new Intent(A.this,B.class);startActivity(in);<A指的的當前Activity 的名字,B 是指要跳轉的Activity 的名字,記住要在AndrioidManifest.xml聲明這些Activity,不然會報錯的>

⑤ 安卓單擊按鈕實現頁面跳轉詳細代碼

vBtn.setOnClickListener(new OnClickListener() {
@Override
publicvoid onClick(View v) {
Intent intent = new Intent(this,TargetActivity.class) ;
startActivity(intent) ;

}
}) ;

⑥ android 開發中點擊彈出對話框中的按鈕進行頁面跳轉如何實現

在按鈕的點擊事件中,用intent跳到下一個activity

⑦ android怎麼用intent跳轉頁面

Android頁面跳轉Intent使用
在android中,一個頁面就是一個activity,在頁面跳轉中,用到了Intent這個類,其實Intent跳轉沒什麼大不了的,就是調用幾個方法,第一個:intent.setAction(「wang.zhe.gui.lai」);當然,裡面的」wang.zhe.gui.lai」這個字元串是要在主配置文件中配置的,第二個:intent.setClass(MainActivity.this,SceondViewActivity.class);這個跳轉方法是最常用的一種,這兩種方法之後,用startActivity(intent);來啟動跳轉。不過這不是我說的重點,我所要說的是如何傳值?一般對於字元串的傳值,就是調用intent.putExtra("str",」字元串內容」);來傳值,但是要是傳一個對象呢?在intent中提供了一個方法,也是 putExtra(),不過,這個是傳對象的方法putExtra(String name, Serializable value),是可以傳對象的,不過對應的對象要序列化,其實就是實現一個標示介面Serializable,下面將部分源碼附上。
這是一個userinfo類
package com.example.regist;

import java.io.Serializable;

public class Userinfo implements Serializable {
String userName;
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserPassword() {
return userPassword;
}
public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}
public String getUserGender() {
return userGender;
}
public void setUserGender(String userGender) {
this.userGender = userGender;
}
public String getUserBathday() {
return userBathday;
}
public void setUserBathday(String userBathday) {
this.userBathday = userBathday;
}
public String getUserLove() {
return userLove;
}
public void setUserLove(String userLove) {
this.userLove = userLove;
}
public String getUserEmail() {
return userEmail;
}
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
String userPassword;
String userGender;
boolean userIsmarry;
public boolean isUserIsmarry() {
return userIsmarry;
}
public void setUserIsmarry(boolean userIsmarry) {
this.userIsmarry = userIsmarry;
}
String userBathday;
String userLove;
String userEmail;
}
可以看出該類實現了Serializable介面。
下面是跳轉加傳值的部分代碼:
Intent intent=new Intent();
intent.setClass(MainActivity.this,SecondviewActivity.class);
intent.putExtra("user",user);//user是實例化之後的對象
startActivity(intent);
下面是第二個界面所對應的類接受傳過來的對象的代碼
TextView tex=new TextView(this);
Intent intent=getIntent();
Userinfo user=(Userinfo) intent.getSerializableExtra("user");
現在就是一個完整的user對象了,你可以隨性而用了。

⑧ 安卓中如何實現頁面跳轉

  • 安卓實現頁面跳轉及傳遞參數教程:

  • 用類名跳轉

    1. Intent負責對應用中一次操作的動作、動作涉及數據、附加數據進行描述,Android則根據此Intent的描述, 負責找到對應的組件,將 Intent傳遞給調用的組件,並完成組件的調用。Intent在這里起著實現調用者與被調用者之間的解耦作用。

    2. Intent傳遞過程中,要找到目標消費者(另一個Activity,IntentReceiver或Service),也就是Intent的響應者。

      Java代碼packagecom.Android;

      importandroid.app.Activity;
      importandroid.content.Intent;
      importandroid.os.Bundle;
      importandroid.view.View;
      importandroid.view.View.OnClickListener;

      {
      @Override
      publicvoidonCreate(BundlesavedInstanceState){
      super.onCreate(savedInstanceState);
      setContentView(R.layout.formstuff);

      finalImageButtonbutton=(ImageButton)findViewById(R.id.android_button);
      button.setOnClickListener(newOnClickListener(){
      publicvoidonClick(Viewv){
      //用類名跳轉,需要在AndroidManifest.xml中申明activity
      Intentintent=newIntent(FormStuff.this,HelloTabWidget.class);
      startActivity(intent);
      }
      });

      }
      復制代碼Xml代碼<?xmlversion="1.0"encoding="utf-8"?>
      <manifestxmlns:android="http://schemas.android.com/apk/res/android"
      package="com.Android"android:versionCode="1"android:versionName="1.0">

      <applicationandroid:icon="@drawable/icon"android:theme="@android:style/Theme.NoTitleBar">
      <activityandroid:name=".FormStuff"android:label="@string/app_name">
      <intent-filter>
      <actionandroid:name="android.intent.action.MAIN"/>
      <categoryandroid:name="android.intent.category.LAUNCHER"/>
      </intent-filter>
      </activity>
      <!--申明activity-->
      <activityandroid:name="HelloTabWidget"></activity>
      </application>
      <uses-sdkandroid:minSdkVersion="4"/>
      </manifest>


  • 使用Action跳轉實現

    1. 使用Action跳轉,如果有一個程序的 AndroidManifest.xml中的某一個Activity的IntentFilter段中定義了包含了相同的Action那麼這個Intent 就與這個目標Action匹配。如果這個IntentFilter段中沒有定義 Type,Category,那麼這個 Activity就匹配了。但是如果手機中有兩個以上的程序匹配,那麼就會彈出一個對話可框來提示說明。

      1. Action的值在Android中有很多預定義,如果想直接轉到你自己定義的Intent接收者,可以在接收者的 IntentFilter中加入一個自定義的Action值(同時要設定 Category值為"android.intent.category.DEFAULT"),在Intent中設定該值為Intent的 Action,就直接能跳轉到自己的Intent接收者中。因為這個Action在系統中是唯一的。

    2. data/type,可以用Uri來做為data,比如Uri uri = Uri.parse(http://www.google.com);

      1. Intent i = new Intent(Intent.ACTION_VIEW,uri);手機的Intent分發過程中,會根據http://www.google.com 的scheme判斷出數據類型type

      2. 手機的Brower則能匹配它,在Brower的Manifest.xml中的IntenFilter中首先有ACTION_VIEW Action,也能處理http:的type。

    3. 至於分類Category,一般不要去在Intent中設置它,如果寫Intent的接收者,就在Manifest.xml的 Activity的 IntentFilter中包含android.category.DEFAULT,這樣所有不設置 Category(Intent.addCategory(String c);)的Intent都會與這個Category匹配。

    4. extras(附加信息),是其它所有附加信息的集合。使用extras可以為組件提供擴展信息,比如,如果要執行「發送電子郵件」這個動作,可以將電子郵件的標題、正文等保存在extras里,傳給電子郵件發送組件。

      Java代碼packagecom.android.edit_text;

      importandroid.app.Activity;
      importandroid.content.Intent;
      importandroid.os.Bundle;
      importandroid.view.KeyEvent;
      importandroid.view.View;
      importandroid.widget.EditText;

      {

      privateTextViewm_TextView;
      privateEditTextm_EditText;


      @Override
      publicvoidonCreate(BundlesavedInstanceState){
      super.onCreate(savedInstanceState);
      setContentView(R.layout.main);

      m_EditText=(EditText)this.findViewById(R.id.EditText01);
      m_EditText.setOnKeyListener(editTextKeyListener);
      }

      privateEditText.=newEditText.OnKeyListener(){

      @Override
      publicbooleanonKey(Viewarg0,intarg1,KeyEventarg2){

      //action跳轉,需要在AndroidManifest.xml中配置action
      Intenti=newIntent("android.intent.action.mydialog");
      MyEditText.this.startActivity(i);

      returnfalse;
      }
      };
      }
      復制代碼Xml代碼<?xmlversion="1.0"encoding="utf-8"?>
      <manifestxmlns:android="http://schemas.android.com/apk/res/android"
      package="com.android.edit_text"android:versionCode="1"
      android:versionName="1.0">
      <applicationandroid:icon="@drawable/icon"android:label="@string/app_name">
      <activityandroid:name=".MyEditText"android:label="@string/app_name">
      <intent-filter>
      <actionandroid:name="android.intent.action.MAIN"/>
      <categoryandroid:name="android.intent.category.LAUNCHER"/>
      </intent-filter>
      </activity>
      <!--配置跳轉activity-->
      <activityandroid:name="com.android.dialog.MyDialog">
      <intent-filter>
      <!--配置action路徑-->
      <actionandroid:name="android.intent.action.mydialog"/>
      <categoryandroid:name="android.intent.category.DEFAULT"/>
      </intent-filter>
      </activity>
      </application>
      <uses-sdkandroid:minSdkVersion="7"/>
      </manifest>

⑨ android中如何設置點擊button頁面跳轉

btn_save.setOnClickListener(newView.OnClickListener()
{
@Override
publicvoidonClick(Viewview)
{
Intentintent=newIntent(當前的Activity.this,要跳轉的Activity.class);
startActivity(intent);
}
});

其中btn_save就是button按鈕

⑩ 安卓開發 擊按鈕實現頁面跳轉,本人菜鳥,請講下原理,再講下代碼如何寫

首先 要定義個按鈕

其次是設置按鈕的點擊事件

之後將頁面跳轉的 事件加入到Button的點擊事件里


具體如下吧

button=(Button)this.findViewById(R.id.button);

這是設置按鈕,之後是點擊事件的設置

點擊事件的設置有兩個


第一個如下

button.setOnClickListener(this);

這種情況是使用本類的事件方法,使用這種方法有個前提 就是需要引用介面如下圖

這是一種傳統的intent使用方法。

熱點內容
網易蘋果游戲怎麼轉移到安卓 發布:2024-11-15 00:07:52 瀏覽:270
win7php環境搭建 發布:2024-11-15 00:06:55 瀏覽:17
erpjava 發布:2024-11-14 23:52:23 瀏覽:253
電腦版地平線四怎麼連上伺服器 發布:2024-11-14 23:46:42 瀏覽:472
ios怎麼變安卓 發布:2024-11-14 23:46:36 瀏覽:333
win7共享xp列印機拒絕訪問 發布:2024-11-14 23:45:29 瀏覽:750
引起資源配置失效的原因有哪些 發布:2024-11-14 23:35:22 瀏覽:15
c語言打字 發布:2024-11-14 23:11:06 瀏覽:893
存儲程序和程序控制的原理 發布:2024-11-14 22:53:23 瀏覽:323
python讀取json數據 發布:2024-11-14 22:51:52 瀏覽:931