Я сделал клиентское приложение для Android-сокета 2.3.3.Он отправляет XML-запрос, а затем получает ответ от сервера сокетов cobol.
Пока клиентское приложение подключается к серверу, отправляет и получает данные, я бы хотел, чтобы во всплывающем диалоге progressdialog.
И оно всплывает (хотя и с небольшим опозданием), но я не могу отклонить его, не получив NullPointerException
Мой код:
.
public class OctopusActivity extends Activity implements OnClickListener
{
//My variables
ProgressDialog progressDialog;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btn1 = (Button) findViewById(R.id.button1);
btn1.setOnClickListener(this);
Varenummer = (EditText) findViewById(R.id.editText1);
Varetekst = (EditText) findViewById(R.id.editText2);
Gruppe = (EditText) findViewById(R.id.editText3);
Producent = (EditText) findViewById(R.id.editText4);
Enhed = (EditText) findViewById(R.id.editText5);
Pris = (EditText) findViewById(R.id.editText6);
}
class ClientThread implements Runnable
{
public void run()
{
try
{
Korer = true;
Log.d("Nicklas", "Thread Igang");
Socket socket = new Socket(serverIpAddress, serverPort);
socket.setSoTimeout(5000);
Log.d("Nicklas", "socket lavet");
PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())), true);
Log.d("Nicklas", "Printer Oprettet");
String request = ("XML Request");
out.println(request);
out.flush();
BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
Log.d("Nicklas", "Reader Oprettet");
Vector<String> v = new Vector<String>();
int i = 0;
Boolean KeepGoing = true;
while (KeepGoing)
{
try
{
String lol = in.readLine();
if (lol.contains("</Answer>")) { KeepGoing = false; }
v.add(new String(lol));
i++;
}
catch (Exception e)
{
Log.d("NickEEEXX", e.toString());
KeepGoing = false;
}
}
Log.d("Trolo", String.valueOf(i) );
in.close();
out.close();
socket.close();
String[] InputLinie = new String[i];
v.toArray(InputLinie);
// This is where i treat the data
Korer = false;
Log.d("NicklasMEH", "KAgemand!");
// The error comes on the following line:
progressDialog.dismiss();
}
catch (Exception e)
{
Log.d("NicklasEx", e.toString());
varetekst = "Kunne ikke forbinde til server";
Korer = false;
}
}
}
@Override
public void onClick(View v)
{
// TODO Auto-generated method stub
Varetekst.setText("");
Gruppe.setText("");
Producent.setText("");
Enhed.setText("");
Pris.setText("");
Log.d("Nicklas", "Starter thread");
progressDialog.show(this, "", "Loading");
if (!Korer)
{
Thread thread = new Thread(new ClientThread());
thread.start();
}
}
}
Итак, мои вопросы: 1. Процесс диалога всплывает немного поздно.Я хочу, чтобы он всплыл, ТОГДА я хочу, чтобы поток начался.2. Почему я получаю исключение nullpointer для progressDialog.dismiss ();?
Любая помощь будет оценена.