내 블로그 목록

2018년 8월 13일 월요일

[Android] 버튼 클릭 시 데이터 넘겨 주기

[해야할 일]

  1. activity_main.xml에서 버튼 생성 후 function onclick 지정
  2. activity_main.xml에서 TextView 생성
  3. MainActivity.java에서 onclick() 지정
  4. MainActivity.java에서 onCreate()에 인텐트 안에 데이터 추출


(1)activity_main.xml에서 버튼 생성 후 function onclick 지정
(2)activity_main.xml에서 TextView 생성


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
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <Button
       android:id="@+id/button"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_marginBottom="8dp"
       android:layout_marginEnd="8dp"
       android:layout_marginStart="8dp"
       android:layout_marginTop="8dp"
       android:text="BB app Activity Call"
       app:layout_constraintBottom_toBottomOf="parent"
       app:layout_constraintEnd_toEndOf="parent"
       app:layout_constraintStart_toStartOf="parent"
       app:layout_constraintTop_toTopOf="parent"
       android:onClick="onclick"
       />
   <TextView
       android:id="@+id/txt"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_marginBottom="8dp"
       android:layout_marginEnd="8dp"
       android:layout_marginStart="8dp"
       android:layout_marginTop="8dp"
       android:text="TextView"
       app:layout_constraintBottom_toTopOf="@+id/button"
       app:layout_constraintEnd_toEndOf="parent"
       app:layout_constraintStart_toStartOf="parent"
       app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>



(3)MainActivity.java에서 onclick() 지정
(4)MainActivity.java에서 onCreate()에 인텐트 안에 데이터 추출


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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.heybaby.androidapp0814;
import android.content.ComponentName;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_main);
       TextView textView = findViewById(R.id.txt);
       //전달받는 Intent 객체 생성
       Intent intent = getIntent();
       //인텐트에 저장되어 있는 데이터 추출
       String str = intent.getStringExtra("name");
       textView.setText(str);
   }
   //onclick event 메서드
   public void onclick(View view){
       // 1. 인텐트 생성
       Intent intent = new Intent();
       // 2. 실행할 엑티비티의 패키지 정보. 엑티비티 정보를 정의(설정)
       ComponentName componentName = new ComponentName("com.heybaby.androidapp0814", "com.heybaby.androidapp0814.MainActivity");
       // 3. Intent에 정보를 설정
       intent.setComponent(componentName);
       // 데이터를 전달하기 위해 intent에 데이터 저장
       intent.putExtra("name", "Cool");
       // 4. 액티비티 실행
       startActivity(intent);
   }
}



[결과]

BB APP ACTIVITY CALL 버튼을 클릭하면 ‘Cool’ Text가 뜬다.

댓글 없음:

댓글 쓰기