반응형
메시지 띄우기 url이동 전화걸기
#디자인 페이지
#자바 소스
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 | package me.happygate.myapplication001; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Toast; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } //버튼 클릭 메시지 뛰워주기 public void onButtonMessge(View v){ Toast.makeText(this, "button clicked", Toast.LENGTH_SHORT).show(); } //해당 url 이동 public void onButtonNaver(View v){ Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://m.naver.com")); startActivity(intent); } //전화하기 public void onButtonCall(View v){ Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("tel:010-1000-1000")); startActivity(intent); } } |
반응형
'매일코딩 > 안드로이드' 카테고리의 다른 글
[안드로이드 기초] inflater로 main화면에서 sub 화면 열기 (0) | 2017.08.14 |
---|---|
[안드로이드 팁] 상단바 하단바 숨기기(전체화면) (931) | 2017.08.11 |
[안드로이드 기초] 프레임 레이아웃 - 버튼 클릭으로 사진 바꾸기 (0) | 2017.08.11 |
[안드로이드 기초] 레이아웃 (0) | 2017.08.10 |
[안드로이드 기초] 새로운 창 띄우기 (0) | 2017.08.10 |
댓글