Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. package com.example.dz_pavlu;
  2.  
  3. import android.support.v7.app.AppCompatActivity;
  4. import android.os.Bundle;
  5. import android.app.Activity;
  6. import android.content.Intent;
  7. import android.os.Bundle;
  8. import android.widget.TextView;
  9.  
  10. public class ViewActivity extends MainActivity {
  11. TextView tvView;
  12. @Override
  13. public void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.activity_view);
  16. tvView = (TextView) findViewById(R.id.tvView);
  17.  
  18. Intent intent = getIntent();
  19.  
  20. String имя = intent.getStringExtra("IntentImya");
  21. String фамилия = intent.getStringExtra("IntentFamiliya");
  22.  
  23. tvView.setText("Ваше имя: " + имя + " " + фамилия);
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement