package com.example.mydate; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import and

动态 未结 0 97
小小草
小小草 LV1 2023年9月23日 23:40 发表
dateActivity2.java package com.example.mydate; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.widget.TextView; public class dateActivity2 extends AppCompatActivity { TextView tv_name,tv_pwd,tv_sex; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_date2); init_View(); Intent intent=getIntent(); String name=intent.getStringExtra("username:"); String password=intent.getStringExtra("password:"); String sex=intent.getStringExtra("sex:"); tv_name.setText(name); tv_pwd.setText(password); tv_sex.setText(sex); } void init_View(){ tv_name=findViewById(R.id.tv_name); tv_pwd=findViewById(R.id.tv_pwd); tv_sex=findViewById(R.id.tv_sex); } }
收藏(0)  分享
相关标签: 智能问答
问题没解决?让AI助手帮你作答 AI助手
0个回复
  • 消灭零回复