public enum Profile { HEADSET(R.string.bluetooth_profile_headset),
A2DP(R.string.bluetooth_profile_a2dp),
OPP(R.string.bluetooth_profile_opp);
public final int localizedString;
private Profile(int localizedString) {
this.localizedString = localizedString;
}
}
Android: Bluetooth profile list for 2.2 and 2.3
