MainActivity
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
package com.example.boostcoursepractice;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.GridView;
import android.widget.Spinner;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.material.snackbar.Snackbar;
import org.w3c.dom.Text;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
Button menuBtn ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
menuBtn = (Button) findViewById(R.id.menu_btn) ;
menuBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(getApplicationContext(), MenuActivity.class);
startActivityForResult(intent, 101);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode ==101)
{
String name = data.getStringExtra("name");
Toast.makeText(getApplicationContext(), "메뉴화면으로부터 응답 : " + name , Toast.LENGTH_SHORT).show();
}
}
}
|
cs |
MenuActivity
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
|
package com.example.boostcoursepractice;
import androidx.appcompat.app.AppCompatActivity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class MenuActivity extends AppCompatActivity {
Button returnBtn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_menu);
returnBtn = (Button) findViewById(R.id.return_btn);
returnBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent();
intent.putExtra("name", "mike") ;
setResult(Activity.RESULT_OK,intent);
finish();
}
});
}
}
|
cs |
activity_main.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/menu_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="156dp"
android:layout_marginLeft="156dp"
android:layout_marginTop="340dp"
android:text="메뉴 화면 띄우기" />
</RelativeLayout>
|
cs |
activity_menu.xml
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
|
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MenuActivity">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="메뉴화면"
android:textSize="40dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/return_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="돌아가기"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView" />
</androidx.constraintlayout.widget.ConstraintLayout>
|
cs |
Intent intent = new Intent(getApplicationContext(), MenuActivity.class);
startActivityForResult(intent, 101);
위 코드 처럼 Intent안에 새로 띄울 액티비티를 집어 넣고 startActivityResult로 인자를 전달하여 띄운다. 이때 101은 사용자가 지정해준 요청코드로서 나중에 띄운 액티비티가 꺼지고 본래의 액티비티로 돌아올때 어떤 액티비티가 꺼졌는지 구별하는 역할을 해준다.
Intent intent = new Intent();
intent.putExtra("name", "mike") ;
setResult(Activity.RESULT_OK,intent);
finish();
intent의 putExtra를 이용하여 name이라는 키 값에 mike라는 string자료를 넣어주었다. 그리고 setResult라는 함수를 사용하여 응답코드인 Activity.RESULT_OK와 intent를 전달해주므로서 intent안의 데이터를 전달해주는 형식이다.
원래의 액티비티로 돌아오면
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode ==101)
{
String name = data.getStringExtra("name");
Toast.makeText(getApplicationContext(), "메뉴화면으로부터 응답 : " + name , Toast.LENGTH_SHORT).show();
}
}
와 같이 onActivityResult함수가 호출되는데 이때 requestCode를 통하여 종료된 액티비티를 구별해주고 data라는 인텐트를 통해 그 안의 데이터를 data.getStringExtra함수로 인자에 키값을 넣어 받아볼 수 있다.
'2019 summer 부스트코스 에이스(안드로이드 프로그래밍) > 3. 화면 여러 개 만들기' 카테고리의 다른 글
3-5-1 브로드캐스트 수신자 / 3-5-2 위험권한 부여하기 (0) | 2019.08.05 |
---|---|
3-4-1 서비스 (0) | 2019.08.02 |
3-3-3 액티비티 수명주기 (0) | 2019.08.02 |
3-2-2 부가데이터 (0) | 2019.08.01 |
3-2-1 인텐트 (0) | 2019.07.31 |