Почему мое Android-клиентское приложение TCP не работает на других телефонах?
Я использую телефон с Android версии 4.1.1. .IT работает правильно. Я могу передавать строковые данные с этого телефона в мое приложение VB на моем ПК через TCP/IP. Однако, если я использую свой другой телефон, с Android-версией 4.4.4 kitkat.. Я все еще могу правильно установить файл.apk и запустить его.., но он не будет выполнять свои функции, то же самое касается и моего другого телефона 4.0.1.
вот мой код:
XML-файл:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="hello"
/>
<EditText
android:id="@+id/textout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/buttonSend"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Send"
/>
<TextView
android:id="@+id/textin"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
Файл JAVA:
public class MainActivity extends Activity {
EditText textOut;
TextView textIn;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textOut = (EditText)findViewById(R.id.textout);
Button buttonSend = (Button)findViewById(R.id.buttonSend);
textIn = (TextView)findViewById(R.id.textin);
buttonSend.setOnClickListener(buttonSendOnClickListener);
}
Button.OnClickListener buttonSendOnClickListener
= new Button.OnClickListener(){
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Socket socket = null;
DataOutputStream dataOutputStream = null;
DataInputStream dataInputStream = null;
try{
// Creating new socket connection to the IP (first parameter) and its opened port (second parameter)
Socket s = new Socket("192.168.1.3", 65535);
// Initialize output stream to write message to the socket stream
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(s.getOutputStream()));
String outMsg = "";
outMsg = textOut.getText().toString();
// Write message to stream
out.write(outMsg);
// Flush the data from the stream to indicate end of message
out.flush();
// Close the output stream
out.close();
// Close the socket connection
s.close();
}
catch(Exception ex){
//:TODO Handle exceptions
}
}};
}
Это как-то связано с уровнями API? minsdkversion и цели dkversion? ПОЖАЛУЙСТА, ПОМОГИТЕ МНЕ. IM GOING CRAZYYY . HAHA XD Спасибо заранее.
1 ответ
Вы не можете создавать соединения сокетов в обработчике по нажатию. У вас будет исключение NetworkOnMainThreadException. Поместите такой код в поток или AsyncTask.
Ваш код не должен работать на 4.1.1 тоже.