• 跳转与数据传递


    java代码

     1 package com.example.myapplication;
     2   
     3 import androidx.appcompat.app.AppCompatActivity;
     4   
     5 import android.content.Intent;
     6 import android.os.Bundle;
     7 import android.view.View;
     8 import android.widget.Button;
     9   
    10 public class AActivity extends AppCompatActivity {
    11     private Button btn_a;
    12   
    13     @Override
    14     protected void onCreate(Bundle savedInstanceState) {
    15         super.onCreate(savedInstanceState);
    16         setContentView(R.layout.activity_a);
    17         btn_a=findViewById(R.id.btn_a);
    18         btn_a.setOnClickListener(new View.OnClickListener() {
    19             @Override
    20             public void onClick(View view) {
    21                 Intent intent=new Intent(AActivity.this,BActivity.class);
    22                 Bundle bundle=new Bundle();
    23                 bundle.putString("name","zhangsan");
    24                 bundle.putInt("number",20);
    25                 intent.putExtras(bundle);
    26                 startActivity(intent);
    27             }
    28         });
    29     }
    30 }

    界面一 xml

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:layout_width="match_parent"
     4     android:layout_height="match_parent"
     5     android:orientation="vertical">
     6   <Button
     7       android:id="@+id/btn_a"
     8       android:layout_marginTop="200dp"
     9       android:layout_width="wrap_content"
    10       android:layout_height="wrap_content"
    11       android:text="跳转到下一界面"
    12       android:layout_gravity="center"/>
    13   <TextView
    14       android:layout_marginTop="50dp"
    15       android:layout_width="match_parent"
    16       android:layout_height="wrap_content"
    17       android:text="点击跳转到下一界面 这里会传递两个数:zhangsan,20"
    18       android:textSize="20dp"
    19       />
    20 </LinearLayout>

    界面二java

     1 package com.example.myapplication;
     2   
     3 import androidx.appcompat.app.AppCompatActivity;
     4   
     5 import android.os.Bundle;
     6 import android.widget.TextView;
     7   
     8 public class BActivity extends AppCompatActivity {
     9        private TextView tv_b;
    10     @Override
    11     protected void onCreate(Bundle savedInstanceState) {
    12         super.onCreate(savedInstanceState);
    13         setContentView(R.layout.activity_b);
    14         tv_b=findViewById(R.id.tv_b);
    15        Bundle bundle=getIntent().getExtras();
    16        String name = bundle.getString("name");
    17        int number = bundle.getInt("number");
    18   
    19        tv_b.setText(name+","+number);
    20     }
    21 }

    界面三xml

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3   
     4     android:layout_width="match_parent"
     5     android:layout_height="match_parent"
     6     android:orientation="vertical">
     7   
     8     <TextView
     9         android:id="@+id/tv_b"
    10         android:layout_marginTop="200dp"
    11         android:layout_width="match_parent"
    12         android:layout_height="wrap_content"
    13         android:gravity="center"
    14         android:textColor="#000000"
    15         android:textSize="20dp"
    16         />
    17   
    18 </LinearLayout>
  • 相关阅读:
    Eclipse JSP/Servlet 环境搭建
    1,有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
    Electron-vue实战(二)— 请求Mock数据渲染页面
    Electron-vue实战(一)—搭建项目与安装Element UI
    Electron-vue实战(三)— 如何在Vuex中管理Mock数据
    vue学习笔记(六)— 关于Vuex可以这样简单理解
    vue学习笔记(五)— 组件通信
    OpenLayers学习笔记(十二)— 飞机速度矢量线预测(二)
    QML学习笔记(八)— QML实现列表侧滑覆盖按钮
    重学JavaScript
  • 原文地址:https://www.cnblogs.com/reddead/p/14164065.html
Copyright © 2020-2023  润新知