Commit 75ce80b89dcc60eb1f9f62f6f594a5e0c071e684

Authored by Imanol-Mikel Barba Sabariego
1 parent 13c43e11

Reproductor funcionando 100%

src/com/upc/pbe/upcnews/Descarrega.java
... ... @@ -25,7 +25,7 @@ public class Descarrega extends AsyncTask<Object, Object, Object>
25 25 html = "";
26 26 }
27 27  
28   - public long descarregarguardar(String url, String path) throws IOException
  28 + public void descarregarguardar(String url, String path) throws IOException
29 29 {
30 30 // Descarrega un arxiu i el guarda
31 31 // Creem l'arxiu
... ... @@ -51,7 +51,6 @@ public class Descarrega extends AsyncTask<Object, Object, Object>
51 51 }
52 52 out.close();
53 53 in.close();
54   - return conn.getContentLength();
55 54 }
56 55  
57 56 protected String doInBackground(String url) throws IOException
... ...
src/com/upc/pbe/upcnews/MainActivity.java
... ... @@ -107,6 +107,8 @@ public class MainActivity extends Activity implements OnClickListener {
107 107 /*
108 108 * COSAS POR HACER
109 109 * Qué coño pasa con los codecs -- Yo
  110 + * Descarga en segundo plano (Mejora dificil)
  111 + * Lentitud descarga -- Todos (este miercoles)
110 112 * CRASH AL DARLE A LA TECLA MENU DENTRO DE LAS PREFERENCES -- Marc
111 113 * Poner la defaultURL al server de PBE
112 114 * Unificar la lengua de todo (WERT STYLE FUCK YES) y que cada uno documente minimamente su codigo
... ...