-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.java
27 lines (21 loc) · 927 Bytes
/
data.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.example.inputdatamahasiswa;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
public class data extends AppCompatActivity {
public static String EXTRA_PERSON = "extra_person";
private TextView tampil;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_data);
TextView nim1 = (TextView)findViewById(R.id.tvnim);
TextView nama1 = (TextView)findViewById(R.id.tvnama);
TextView kelas1 = (TextView)findViewById(R.id.tvkelas);
TextView ttl1 = (TextView)findViewById(R.id.tvttl);
nim1.setText(getIntent().getStringExtra("NIM"));
nama1.setText(getIntent().getStringExtra("Nama"));
kelas1.setText(getIntent().getStringExtra("Kelas"));
ttl1.setText(getIntent().getStringExtra("TTL"));
}
}