Android-블루투스
여러 가지 방법 중에서 Bluetooth는 서로 다른 두 장치간에 데이터를주고받는 방법입니다. Android 플랫폼에는 장치가 다른 Bluetooth 장치와 무선으로 데이터를 교환 할 수 있도록하는 Bluetooth 프레임 워크에 대한 지원이 포함되어 있습니다.
Android는 이러한 다양한 작업을 수행하기 위해 Bluetooth API를 제공합니다.
다른 Bluetooth 장치 검색
페어링 된 장치 목록 가져 오기
서비스 검색을 통해 다른 장치에 연결
Android는 Bluetooth와 통신하기 위해 BluetoothAdapter 클래스를 제공합니다. 정적 메서드 getDefaultAdapter ()를 호출하여이 호출의 객체를 만듭니다. 구문은 다음과 같습니다.
private BluetoothAdapter BA;
BA = BluetoothAdapter.getDefaultAdapter();
장치의 Bluetooth를 활성화하려면 다음 Bluetooth 상수 ACTION_REQUEST_ENABLE을 사용하여 인 텐트를 호출하십시오. 구문은 다음과 같습니다.
Intent turnOn = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(turnOn, 0);
이 상수 외에도 다른 작업을 지원하는 API를 제공하는 다른 상수가 있습니다. 아래에 나열되어 있습니다.
Sr. 아니요 | 상수 및 설명 |
---|---|
1 | ACTION_REQUEST_DISCOVERABLE 이 상수는 블루투스 검색을 켜는 데 사용됩니다. |
2 | ACTION_STATE_CHANGED 이 상수는 블루투스 상태가 변경되었음을 알려줍니다. |
삼 | ACTION_FOUND 이 상수는 발견 된 각 장치에 대한 정보를 수신하는 데 사용됩니다. |
Bluetooth를 활성화하면 getBondedDevices () 메서드를 호출하여 페어링 된 장치 목록을 가져올 수 있습니다. 블루투스 장치 세트를 반환합니다. 구문은 다음과 같습니다.
private Set<BluetoothDevice>pairedDevices;
pairedDevices = BA.getBondedDevices();
Parried Devices와는 별도로 Blueetooth에 대한 더 많은 제어를 제공하는 API의 다른 메서드가 있습니다. 아래에 나열되어 있습니다.
Sr. 아니요 | 방법 및 설명 |
---|---|
1 | enable() 이 방법은 활성화되지 않은 경우 어댑터를 활성화합니다. |
2 | isEnabled() 어댑터가 활성화 된 경우이 메서드는 true를 반환합니다. |
삼 | disable() 이 방법은 어댑터를 비활성화합니다. |
4 | getName() 이 메서드는 Bluetooth 어댑터의 이름을 반환합니다. |
5 | setName(String name) 이 방법은 블루투스 이름을 변경합니다. |
6 | getState() 이 메서드는 Bluetooth 어댑터의 현재 상태를 반환합니다. |
7 | startDiscovery() 이 방법은 120 초 동안 Bluetooth 검색 프로세스를 시작합니다. |
예
이 예제는 Bluetooth를 조작하고 Bluetooth에 의해 페어링 된 장치 목록을 표시하는 BluetoothAdapter 클래스의 데모를 제공합니다.
이 예제를 실험하려면 실제 기기에서 실행해야합니다.
단계 | 기술 |
---|---|
1 | Android 스튜디오를 사용하여 com.example.sairamkrishna.myapplication 패키지 인 Android 애플리케이션을 만듭니다. |
2 | src / MainActivity.java 파일을 수정하여 코드를 추가하십시오. |
삼 | 레이아웃 XML 파일 res / layout / activity_main.xml 수정 필요한 경우 GUI 구성 요소를 추가하십시오. |
4 | AndroidManifest.xml을 수정하여 필요한 권한을 추가하십시오. |
5 | 애플리케이션을 실행하고 실행중인 Android 기기를 선택하고 여기에 애플리케이션을 설치하고 결과를 확인합니다. |
내용은 다음과 같습니다. src/MainActivity.java
package com.example.sairamkrishna.myapplication;
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.Set;
public class MainActivity extends Activity {
Button b1,b2,b3,b4;
private BluetoothAdapter BA;
private Set<BluetoothDevice>pairedDevices;
ListView lv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1 = (Button) findViewById(R.id.button);
b2=(Button)findViewById(R.id.button2);
b3=(Button)findViewById(R.id.button3);
b4=(Button)findViewById(R.id.button4);
BA = BluetoothAdapter.getDefaultAdapter();
lv = (ListView)findViewById(R.id.listView);
}
public void on(View v){
if (!BA.isEnabled()) {
Intent turnOn = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(turnOn, 0);
Toast.makeText(getApplicationContext(), "Turned on",Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getApplicationContext(), "Already on", Toast.LENGTH_LONG).show();
}
}
public void off(View v){
BA.disable();
Toast.makeText(getApplicationContext(), "Turned off" ,Toast.LENGTH_LONG).show();
}
public void visible(View v){
Intent getVisible = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
startActivityForResult(getVisible, 0);
}
public void list(View v){
pairedDevices = BA.getBondedDevices();
ArrayList list = new ArrayList();
for(BluetoothDevice bt : pairedDevices) list.add(bt.getName());
Toast.makeText(getApplicationContext(), "Showing Paired Devices",Toast.LENGTH_SHORT).show();
final ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_list_item_1, list);
lv.setAdapter(adapter);
}
}
내용은 다음과 같습니다. activity_main.xml
여기서 abc는 tutorialspoint의 로고에 대해 나타냅니다.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:transitionGroup="true">
<TextView android:text="Bluetooth Example"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textview"
android:textSize="35dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials point"
android:id="@+id/textView"
android:layout_below="@+id/textview"
android:layout_centerHorizontal="true"
android:textColor="#ff7aff24"
android:textSize="35dp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/abc"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:theme="@style/Base.TextAppearance.AppCompat" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Turn On"
android:id="@+id/button"
android:layout_below="@+id/imageView"
android:layout_toStartOf="@+id/imageView"
android:layout_toLeftOf="@+id/imageView"
android:clickable="true"
android:onClick="on" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Get visible"
android:onClick="visible"
android:id="@+id/button2"
android:layout_alignBottom="@+id/button"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="List devices"
android:onClick="list"
android:id="@+id/button3"
android:layout_below="@+id/imageView"
android:layout_toRightOf="@+id/imageView"
android:layout_toEndOf="@+id/imageView" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="turn off"
android:onClick="off"
android:id="@+id/button4"
android:layout_below="@+id/button"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/listView"
android:layout_alignParentBottom="true"
android:layout_alignLeft="@+id/button"
android:layout_alignStart="@+id/button"
android:layout_below="@+id/textView2" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Paired devices:"
android:id="@+id/textView2"
android:textColor="#ff34ff06"
android:textSize="25dp"
android:layout_below="@+id/button4"
android:layout_alignLeft="@+id/listView"
android:layout_alignStart="@+id/listView" />
</RelativeLayout>
내용은 다음과 같습니다. Strings.xml
<resources>
<string name="app_name">My Application</string>
</resources>
내용은 다음과 같습니다. AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sairamkrishna.myapplication" >
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
애플리케이션을 실행 해 보겠습니다. 실제 Android 모바일 장치를 컴퓨터에 연결했다고 가정합니다. Android 스튜디오에서 앱을 실행하려면 프로젝트의 활동 파일 중 하나를 열고
이제 Get Visible 버튼을 선택하여 가시성을 켭니다. 다음 화면이 120 초 동안 검색을 켤 수 있는지 묻는 화면이 나타납니다.
이제 List Devices 옵션을 선택하기 만하면됩니다. 목록보기에서 페어링 된 장치를 나열합니다. 제 경우에는 페어링 된 장치가 하나만 있습니다. 아래와 같습니다.
이제 끄기 버튼을 선택하여 Bluetooth를 끕니다. 블루투스를 끄면 다음과 같은 메시지가 나타납니다.