Android 002. Button Internet

less than 1 minute read

이번엔 버튼을 눌러서 인터넷 창을 띄워보겠다.

얘는 intent 객체를 사용하는데, 화면 전환을 담당하는 액티비티다.

즉, intent를 이용해서 새로운 인터넷 창을 띄우는 거다.

02-am

버튼 하나 추가하고, 메소드 이름 정해준다

public void onButton2Clicked(View v) {
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://detegice.github.io/"));
    startActivity(intent);
}

메소드 하나 추가해준다.

02-ph

잘 넘어가진다.

여기서 의문점은 난 분명히 버튼을 HELLO ANDROID 아래에 놔뒀는데 버튼이 (0,0)으로 이동했다.

이유는 간단하다.

02-er

레이아웃 속성을 지정 안해줬다.

Categories:

Updated:

Comments