Blog/Android (10) 썸네일형 리스트형 CallIntent, 전화번호 받아오기 어플 액티비티에서 전화번호를 받아 그 정보를 인텐트로 넘겨주고 전화앱에 전달해줌 즉, 데이터 전달 MainActivity.java import android.content.ComponentName; import android.content.Intent; import android.net.Uri; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends App.. 안드로이드 Bluetooth SPP BluetoothSPP 1. Manifest.xml 권한 등록 가장 먼저 블루투스를 이용하기 위해 권한을 등록해야 한다. BLUETOOTH : 블루투스 연결 요청, 연결 수락 및 데이터 전송과 같은 블루투스 통신 수행 BLUETOOTH_ADMIN : 블루투스 설정 조작 및 앱에서 기기 검색 2. gradle dependency에 bluetoothspp 추가 implementation 'com.akexorcist:bluetoothspp:1.0.0' spp 라이브러리 이용 3. MainActivity에서 이용 // import import android.app.Activity; import android.bluetooth.BluetoothAdapter; import android.content.Intent;.. 이전 1 2 다음