導航:首頁 > 操作系統 > android頁面跳轉

android頁面跳轉

發布時間:2022-02-06 07:09:43

android應用程序如何實現界面跳轉

你先寫一個xml文件 內容是<Button xmlns:android="http://scehmas.android.com/apk/res/android" android:layout_widht="wrap_content" android:layout_height="wrap_content" android:text="按鈕" android:id="@+/btn"/>
然後再第一個activity 中通過findViewById()得到這個button button.setOnClickListener(new OnClickListener(){
public void onClick(View view){
Intent intent=new Intent();
intent.setCass(Activity1.this,activity2.class)
startAtivity(intent);
});
ok 這樣就行了 純手敲望採納。

❷ 如何實現android跳轉頁面並傳遞參數

activity間的傳值
1.值由A.class傳遞到B.class
A.class中:

B.class中:

Intent intent = getIntent();
//獲取數據
String username = intent.getStringExtra("username1");
String userpwd = intent.getStringExtra("userpwd1");
/* Bundle data = intent.getExtras();
String username = intent.getString("username1");
String userpwd = intent.getString("userpwd1"); */

2.除了A.class可以向B.class傳值外,B.class也可以返回值
A.class中
this.startActivity(intent);
改為this.startActivityFroResult(intent,1);//1為請求碼
B.class中
對傳過來的intent對象賦新值

intent.putExtra("username2",username2);
intent.putExtra("userpwd2",userpwd2);
this.setResult(1,intent);
this.finish();//結束焦點

A.class中重寫

@Override protected void onActivityResult(int requestCode,int resultCode,Intent data){
super.onActivityResult(requestCode,resultCode,data);
if(resultCode==1)
{
//可從data中取出值
}
}

A.class中取出B.class中intent傳過來的值

3.intent.setClass(A.this,B.class)的另一種寫法
在manifest.xml中B的Activity中加入
<intent-filter>
<action android:name="com.showB">//這里可以隨便寫
<category android:name = "android.intent.category.DEFAULT">
</intent-filter>
那麼A中就可以直接寫
intent.setAction("com.showB");
來代替
intent.setClass(A.this,B.class);
這也就提示了我們利用intent-filter可以實現其他很多功能

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

❹ 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頁面跳轉到空白頁

protected void onCreat(Bundle savedInstanceState) {

這句寫錯了,導致沒有創建,改成下面的
protected void onCreate(Bundle savedInstanceState) {

❻ 開發Android 怎樣實現登錄界面的跳轉 詳細

intent跳轉有兩種方式,一種是我們常用的顯示跳轉,還有一種是隱式跳轉。
顯式方式:Intent aIntent = new Intent(this,XXActivity.class);第一個是你當前Activity的對象,第一個參數是你要跳轉Activity的類。這種方式適合在同一個APP中的內部跳轉。
隱式方式:Intent aIntent = new Intent("actiionXXXXXXX"),參數為你在AndroidManifest.xml中配置的Actitiy中<intent-filter><action android:name="actionXXXXXXXX"/><intent-filter>

❼ 怎樣在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中怎麼通過鏈接實現頁面跳轉

給你那個鏈接的TextView上加監聽事件
TextView
tv=(TextView)
findViewById(R.id.XX)
;
tv.setOnClickListener(new
OnClickListener(){
public
void
onClick(View
v){
Intent
intent=new
Intent(當前Activity名字.this,要跳轉的Activity名字.class)
;
startActivity(intent)
;
}
});

❾ android界面跳轉怎麼實現

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

❿ 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頁面跳轉相關的資料

熱點內容
雲看地是什麼APP 瀏覽:883
數學指南pdf 瀏覽:856
phpcurldll64位 瀏覽:976
程序員脫產一年半 瀏覽:849
hr招程序員有什麼條件 瀏覽:587
android開源集合 瀏覽:867
華為雲伺服器登錄密碼和賬號 瀏覽:154
中世紀java程序員 瀏覽:786
什麼開發引擎使用python 瀏覽:176
sh腳本運行命令 瀏覽:316
廣聯達加密鎖怎麼看到期 瀏覽:173
cad軌跡命令 瀏覽:980
同事刷到女程序員自媒體視頻 瀏覽:573
校驗演算法的缺點是什麼 瀏覽:718
PHP商品分類功能實現 瀏覽:330
php取字元串中間 瀏覽:432
程序員經常用工具 瀏覽:837
降服主力指標源碼主圖 瀏覽:502
python實用庫 瀏覽:694
電腦默認7個文件夾 瀏覽:13