Cell is hacked. Life is Hacked. Is there a way out?
- By Canesfan
- VIP Lounge
- 13 Replies
Did you change your social security number? Should be considered.
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.
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))
Sorry for the delayed response and thank you very much. Using your suggestion solved that problem. I think I just need to sit down with someone who also has an android who can walk me through the learning process. Again, thanks so much!!the best way to send videos, especially large sized videos thru text or email is to use google drive. just upload the video there and use the share option. you should be shown a link which you can just copy and paste in to either text or email. i know it is not quite the same, but texting especially is not that sophisticated when it comes to handling media files like that.
http://wikiahow.com/how-to-send-large-videos-through-text-on-android-with-pictures/
@Override
protected void onPostExecute(String result) {
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(),R.layout.spinner_layout, trainers);
spinner.setAdapter(adapter);
}
adapter = new ArrayAdapter<String> (getContext(), android.R.layout.simple_spinner_dropdown_item, trainers);
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
android:minHeight="?android:attr/listPreferredItemHeightSmall"
android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
android:background="@color/logoGreen"
android:paddingRight="?android:attr/listPreferredItemPaddingRight" />
Thank you so much for telling us!This game is awesome!