Bluetoothデバイスを保存するクラスを作成

This commit is contained in:
Asura146 2024-01-12 10:37:44 +09:00
parent 18636c661c
commit cd12c89081

View File

@ -0,0 +1,21 @@
package com.example.childguard;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import androidx.appcompat.app.AppCompatActivity;
public class Bluetooth_device_save extends AppCompatActivity {
final SharedPreferences pref= PreferenceManager.getDefaultSharedPreferences(this);
public Bluetooth_device_save() {
}
public void device_save(String deviceAddress){
SharedPreferences.Editor e=pref.edit();
e.putString("bluetooth_device1",deviceAddress);
e.apply();
}
public String device_info(){
return pref.getString("bluetooth_device1","not_device");
}
}