Note that there are some explanatory texts on larger screens.

plurals
  1. POEmulator show's spinner value's tablet show's empty value
    primarykey
    data
    text
    <p>In my application i use an MYSQL databank. And i try to load the value's from the Database into the spinner. In the (eclipse) emulator this works perfectally (all items get loaded into the spinners) .</p> <p>But when i try to run my application on my tablet (honeycomb 10.1) the value's from the database don't show up in the spinner. When i try to reach my database from the tablet everything works fine.</p> <p>I'm also using the AsynTask for getting the data so that should not be the problem i think?</p> <p>(The Code Below is working fine on the Emulator but when i load it on my honeycomb tab the data does not get loaded) And im using the AsynTask class to get the connectie to mysql</p> <p>Any advice?</p> <pre><code> // This Thread get's the reservation ID's Thread asyn = new Thread(){ public void run(){ try{ int klok = 0; while(klok &lt; 5000){ sleep(100); klok = klok + 100; } try{ // Ophalen van de Reservaties objecten lijst = mpr.get(); ArrayAdapter&lt;String&gt; AdapterCountries = new ArrayAdapter&lt;String&gt;(Materiaal.this,android.R.layout.simple_spinner_item); AdapterCountries.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); int lenLijst = lijst.size(); String[] temp = new String[lenLijst+1]; for(int x=0; x &lt; lenLijst; x++){ temp[x] = Integer.toString(lijst.get(x).getRes_id()); AdapterCountries.add(temp[x]); } s1.setAdapter(AdapterCountries); }catch(Exception ex){ ex.printStackTrace(); }finally{ //adapter.notifyDataSetChanged(); } }catch(InterruptedException ex){ ex.printStackTrace(); } } }; asyn.start(); </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload