728x90
반응형
package com.threedpit.intent;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void onButton2Clicked(View v){
/**
인텐트라는 객체를 생성하고 사이트 주소를 넣어주었고
*/
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://m.daum.com"));
startActivity(intent); /**인텐트를 실행 하기 위한 것 */
}
public void onButton3Clicked(View v){
/**
인텐트라는 객체를 생성하고 전화 번호를 넣어주었다.
*/
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("tel:010-6888-7481"));
startActivity(intent);/**인텐트를 실행 하기 위한 것 */
}
}
[이미지 출처 : 2020Do it! 안드로이드 앱 프로그래밍(개정7판), 유튜브 동영상 ]
728x90
반응형
'안드로이드(Android)' 카테고리의 다른 글
안드로이드 이론빡공 5 (0) | 2020.06.10 |
---|---|
안드로이드 이론빡공 4 (0) | 2020.06.10 |
안드로이드 이론빡공 3 (0) | 2020.06.09 |
안드로이드 이론빡공 2 (0) | 2020.06.09 |
개인정보처리 방침 (0) | 2020.05.20 |
댓글