zoukankan      html  css  js  c++  java
  • 跳转与数据传递

    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>
  • 相关阅读:
    剑指Offer
    剑指Offer
    ASP.NET MVC4中的bundles特性引发服务器拒绝访问(403错误)
    less文件的样式无法生效的一个原因,通过WEB浏览器访问服务器less文件地址返回404错误
    Sqlserver Sql Agent Job 只能同时有一个实例运行
    SSAS 聚合设计提升CUBE的查询性能(转载)
    SQL SERVER: 合并相关操作(Union,Except,Intersect)
    SQL Server安装完成后3个需要立即修改的配置选项(转载)
    收缩TempDB的办法(转载)
    SSIS 关于并发的两个设置
  • 原文地址:https://www.cnblogs.com/reddead/p/14164065.html
Copyright © 2011-2022 走看看