Ci sono alcune cose che stanno succedendo qui, cercherò di affrontare quello che posso.
Questa voce di registro è sospetta:
03-22 22:30:42.860: E/ERROR(6055): Illegal character in query at index 53: http://necrecords.16mb.com/getproducts.php?password=A AA E EEE
Inoltre, da questo registro:
03-22 22:54:08.000: E/ERROR(7654): Error converting result java.lang.NullPointerException: lock == null
Puoi vedere che non stai ricevendo una risposta valida da questa pagina PHP.
Questo blocco di codice sta generando un'eccezione:
//convert response to string
try{
BufferedReader reader = new BufferedReader(new InputStreamReader(is,"utf-8"),8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result=sb.toString();
}catch(Exception e){
Log.e("ERROR", "Error converting result "+e.toString());
Ho appena provato l'URL in un browser e ha funzionato, poiché il browser codifica automaticamente l'URL correttamente, in questo modo:
http://necrecords.16mb.com/getproducts.php?password=A%20AA%20E%20EEE
Penso che tu debba solo codificare correttamente l'URL poiché la stringa contiene spazi.
String query = URLEncoder.encode(mname, "utf-8");
httppost= new HttpPost("http://necrecords.16mb.com/getsongslist.php?password="+query);
response=httpclient.execute(httppost);
Per quanto riguarda il problema del raddoppio della tua lista, puoi semplicemente cancellare la lista ogni volta che AsyncTask viene eseguito:
protected Void doInBackground(Void...params){
InputStream is=null;
String result="";
try{
records.clear(); //clear the list before re-populating
httpclient=new DefaultHttpClient();
httppost= new HttpPost("http://necrecords.16mb.com/getproducts.php");
response=httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
}catch(Exception e){
Un'altra cosa da menzionare, probabilmente vorrai creare un adattatore separato per ciascuna attività. Allo stato attuale, stai utilizzando lo stesso adattatore per entrambe le attività.
Nel getView()
del tuo adattatore , fai riferimento a R.id.pro_name
e R.id.pro_uprice
, ma stai utilizzando questo adattatore in entrambe le tue attività. Entrambe le tue attività contengono questi elementi nel loro layout xml?
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View itemView = inflater.inflate(groupid, parent, false);
String[] row_items=records.get(position).split("__");
TextView textName= (TextView) itemView.findViewById(R.id.pro_name);
textName.setText(row_items[0]);
TextView textPrice= (TextView) itemView.findViewById(R.id.pro_uprice);
textPrice.setText(row_items[1]+"$");
return itemView;
}