Accessories Internal/external microphone + external headset?
- By Winfried
- VIP Lounge
- 2 Replies
Thanks much for the infos.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

I'm not making any guarantees, but Tasker may be able to do this.very simple, I get a yourchoiceofapp notificacion, don't want another yourchoiceofapp notification for next x minutes
any way to do this?

Can you be a little more specific? Generally, when you click on a Play Store link for an app that's no longer in the Play Store, you'll see that 'item not found' message. But your description doesn't match up with that.Why does my Google activity show Google play store, but when i click on it, it says item not found.
The global model's OnePlus UI is pretty darn close to stock Android. Much more so than, say, Samsung or even EMUI. So close is it, that OnePlus have been known to issue global updates on a par with Google or within a few days. The T-Mobile (USA) carrier minority variant is still in the Dark Ages.How's the UI on the OnePlus? I like vanilla Android, a lot. Is it that much different (like Samsung)?

Excellent! I'm really glad it's resolved.I tried doing what you advised, and it worked. I want to thank you for all your help. I had worried with this all weekend and I was at my wits end. Again, thanks for helping me when I didn't know where to go nest.
//java client
OutputStream output = client.getOutputStream();
DataOutputStream out = new DataOutputStream(new BufferedOutputStream(output));
byte[] msg;
if(strings[1].equals("swipe"))
{
out.write(strings[1].getBytes());
out.flush();
//strings[0] contains the movement information in format of:
//xmovement_ymovement
//for example: 2.5365_8.5478
msg = strings[0].getBytes();
out.write(msg);
out.flush();
}
#python server
#the 1024 is a temporary number I just put in there
#because I don't know how to find the size of the data in the java client side
request_byte = client_socket.recv(1024)
print("reqeust_byte size: " + str(sys.getsizeof(request_byte)))
request = request_byte.decode()
print("Received " + request)
if request == "swipe":
movement_byte = client_socket.recv(1024)
print("movement_byte size: " + str(sys.getsizeof(movement_byte)))
movement_str = movement_byte.decode()
x_movement, y_movement = movement_str.split("_")
print("x: " + x_movement)
print("y: " + y_movement)
swipe(float(x_movement), float(y_movement))