티스토리 뷰
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void onButton1Clicked(View v)
{
Intent intent = new Intent(getApplicationContext(), MenuActivity.class);
intent.putExtra("title", "fucking"); //intent의 Extra가 munuactivity로 전달됨.
startActivityForResult(intent, 1001); //1001이라는 요청코드를 가지고 구분
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
if (data != null){
String name = data.getStringExtra("name");
Toast.makeText(getApplicationContext(), "recievevalue : " + name, Toast.LENGTH_LONG).show();
}
super.onActivityResult(requestCode, resultCode, data);
}
public class MenuActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_menu);
Intent intent = getIntent();
if(intent != null){
String title = intent.getStringExtra("title");
Toast.makeText(getApplicationContext(), "recievevalue : " + title, Toast.LENGTH_LONG).show();
}
}
public void onButton1Clicked(View v)
{
//intent로 보내야 시스템이 알아들을 수 있음.
Intent intent = new Intent();
intent.putExtra("name", "mother");
setResult(RESULT_OK, intent);
finish();
}
-> Manifest에서 새로 만든 MenuActivity를 알림.
'프로그래밍 > 안드로이드' 카테고리의 다른 글
RelativeLayout 배치 관련 (0) | 2015.04.14 |
---|---|
인텐트와 데이터 전달 (0) | 2015.04.12 |
안드로이드 스마트폰 USB 연결 디버깅 환경 셋팅! (1) | 2015.04.09 |
액티비티의 생명주기 (0) | 2015.04.09 |
상대 레이아웃(RelativeLayout) (0) | 2015.04.08 |
- Total
- Today
- Yesterday
- CVE-2018-0798
- keylogger
- Kimsuky
- 멋쟁이사자처럼 4기
- 비트코인
- 해킹메일
- idapython
- koodous
- 출처 : Do it 안드로이드 프로그래밍
- 위협정보공유
- Static Analysis Engine
- vuln
- infostealer
- cuckoo-sandbox
- 한글악성코드
- Yara
- Flybits
- CVE-2018-9375
- .wll
- MS-Office
- us-cert
- Servey
- Bisonal
- Cisco Talos
- AMSI
- Decoding
- malware
- VirusBulletin
- 스피어피싱
- 악성코드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |