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
最新推荐文章于 2025-06-06 11:39:52 发布