Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 안드로이드
- android studio 앱 만드는 법
- hongdroid
- 앱 만드는 법
- java
- flutter
- 안드로이드 앱 만들기
- 플러터
- 안드로이드 네비게이션 메뉴
- android tutorial
- 앱 만들기
- Android
- android example
- 안드로이드 기초
- 안드로이드 서비스
- 홍드로이드 강의
- IOS
- Android Java
- 안드로이드 예제
- 개발자
- 개발강의
- 자바
- 코틀린
- Android Studio
- 안드로이드 코딩 기초
- 안드로이드 스튜디오
- 자바 튜토리얼
- 홍드로이드
- 코딩
- 안드로이드 튜토리얼
Archives
- Today
- Total
홍드로이드의 야매코딩
#3 안드로이드 스튜디오 인텐트 (Intent) 예제 [ 홍드로이드 ] 본문
[ activity_main.xml ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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">
<EditText
android:id="@+id/et_test"
android:layout_width="200dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/btn_move"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="이동"/>
</LinearLayout>
|
cs |
[ MainActivity.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
package com.hongwan9.intentexample;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends AppCompatActivity {
private Button btn_move;
private EditText et_test;
private String str;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et_test = findViewById(R.id.et_test);
btn_move = findViewById(R.id.btn_move);
btn_move.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
str = et_test.getText().toString();
Intent intent = new Intent(MainActivity.this , SubActivity.class);
intent.putExtra("str",str);
startActivity(intent); // 액티비티 이동.
}
});
}
}
|
cs |
[ activity_sub.xml ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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=".SubActivity">
<TextView
android:id="@+id/tv_sub"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="서브 액티비티 도착"/>
</LinearLayout>
|
cs |
[ SubActivity.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
28
|
package com.hongwan9.intentexample;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
public class SubActivity extends AppCompatActivity {
private TextView tv_sub;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sub);
tv_sub = findViewById(R.id.tv_sub);
Intent intent = getIntent();
String str = intent.getStringExtra("str");
tv_sub.setText(str);
}
}
|
cs |
'Android Java' 카테고리의 다른 글
#6 안드로이드 스튜디오 리스트뷰 (ListView) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
---|---|
#5 안드로이드 스튜디오 폴더 패키지 구조 설명 [ 홍드로이드 ] (0) | 2019.05.21 |
#4 안드로이드 스튜디오 이미지뷰 (ImageView) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
#2 안드로이드 스튜디오 에딧텍스트 (EditText) 예제 [ 홍드로이드 ] (2) | 2019.05.18 |
#1 안드로이드 스튜디오 텍스트뷰 (TextView) 예제 [ 홍드로이드 ] (0) | 2019.05.18 |
Comments