[안드로이드]/[안드로이드] 공부 기록

[안드로이드] 안드로이드 기본

노트포미 2023. 9. 11. 16:23

MainActivity.java

[동작 list]

1. Toast 띄우기

Toast.makeText(getApplicationContext(), "버튼이 눌렸습니다", Toast.LENGTH_LONG).show();

2. 사이드로 연결

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://m.naver.com"));
startActivity(intent);

 

 

[프로젝트 수정]

1. 정보 보기 : ctrl+q 

2. parameter(인수) 보기 : ctrl + p