Android 頁面跳轉傳遞引數及頁面返回接收引數
HelloWorldActivity.java
package syit.david;
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.Toast;
public class HelloWorldActivity extends Activity
{
private Button btn;
public final static int REQUEST_CODE = 1;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btn = (Button) findViewById(R.id.btn1);
btn.setOnClickListener(listener);
}
private OnClickListener listener = new OnClickListener()
{
public void onClick(View v)
{
Intent intent = new Intent();
intent.setClass(HelloWorldActivity.this, SecondActivity.class);
intent.putExtra("str", "First Android Application!");
//startActivity(intent);
startActivityForResult(intent, REQUEST_CODE);
}
};
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if(requestCode==REQUEST_CODE)
{
if(resultCode==SecondActivity.RESULT_CODE)
{
Bundle bundle = data.getExtras();
String str = bundle.getString("back");
Toast.makeText(HelloWorldActivity.this, str, Toast.LENGTH_LONG).show();
}
}
}
}
SecondActivity.java
package syit.david;
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 SecondActivity extends Activity
{
private TextView tv;
private Button btn;
public final static int RESULT_CODE = 1;
@Override
protected void onCreate(Bundle savedInstanceState)
{
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
tv = (TextView)findViewById(R.id.secondText);
Intent intent = getIntent();
Bundle bundle = intent.getExtras();
String s = bundle.getString("str");
tv.setText(s);
btn = (Button)findViewById(R.id.btn2);
btn.setOnClickListener(listener);
}
public OnClickListener listener = new OnClickListener()
{
public void onClick(View v)
{
Intent intent = new Intent();
intent.putExtra("back", "Back Data");
setResult(RESULT_CODE, intent);
finish();
}
};
}
layout目錄下的2個xml檔案main和second
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/firstText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/btnText1"
/>
</LinearLayout>
second.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/secondText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/btnText2"
/>
</LinearLayout>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="syit.david"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".HelloWorldActivity"
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=".SecondActivity"
android:label="@string/app_name">
</activity>
</application>
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.SEND_SMS"/>
</manifest>
注意點:
1、新建一個Android的Activity後,都需要在AndroidManifest.xml檔案中進行註冊宣告。
2、頁面傳遞引數使用 startActivityForResult()方法,並實寫其 onActivityResult()方法,在方法裡進行判斷處理。
3、接收頁面使用setResult()方法,將值返回。
相關文章
- C#頁面間的引數傳遞C#
- Flutter:學會在頁面間傳遞引數Flutter
- 微信小程式攜帶引數跳轉頁面/獲取頁面棧微信小程式
- AngularJS進階(八)實現頁面跳轉並進行引數傳遞AngularJS
- .net如何實現頁面間的引數傳遞
- silverlight 通過除錯頁面傳遞引數給page頁面除錯
- .net頁面間的引數傳遞簡單例項單例
- 在多個JSP頁面之間傳遞引數JS
- 給一個介面傳遞引數,並接收返回的引數
- dialog如何向其href指定的頁面傳遞引數?
- Vuejs基本知識(八)【頁面間的引數傳遞】VueJS
- 微信開發之小程式頁面間如何傳遞引數
- 函式引數傳遞及返回函式
- Flutter 路由——頁面表及頁面引數繫結的自動生成Flutter路由
- Vue3學習(十九) - 使用Vue完成頁面引數傳遞Vue
- router-view子頁面呼叫父頁面方法更新父頁面引數View
- iOS專案開發實戰——使用三種方式實現頁面跳轉與引數傳遞(一)iOS
- iOS專案開發實戰——使用三種方式實現頁面跳轉與引數傳遞(二)iOS
- iOS專案開發實戰——使用三種方式實現頁面跳轉與引數傳遞(三)iOS
- React router 4 獲取路由引數,跨頁面引數React路由
- 分頁及查詢引數傳遞問題分享
- 金蝶雲星空——開啟其他表單編輯頁面並傳遞引數
- iOS——使用StroryBoard頁面跳轉及傳值iOS
- Flutter頁面保活及保持頁面跳轉位置Flutter
- Android頁面跳轉與返回機制詳解Android
- js頁面跳轉的問題(跳轉到父頁面、最外層頁面、本頁面)JS
- 獲取url中?後面傳遞的引數
- 【easyui】開啟的tab頁同頁面引數不同頁面內容不重新整理UI
- vue頁面跳轉Vue
- Flutter頁面跳轉Flutter
- javascript 跳轉頁面JavaScript
- js頁面跳轉JS
- react路由引數改變不重新渲染頁面React路由
- 微信小程式頁面跳轉傳參微信小程式
- Flutter 基礎(十二)路由(頁面跳轉)與資料傳遞Flutter路由
- Flutter基礎(十二)路由(頁面跳轉)與資料傳遞Flutter路由
- react跳轉url,跳轉外鏈,新頁面開啟頁面React
- 微信小程式的路由跳轉和傳遞引數微信小程式路由