Commit 35cdc54aacaa3accee6cd2df66da5481c4b296f3

Authored by Imanol-Mikel Barba Sabariego
1 parent 9419e4f9

Eliminado bug al girar la pantalla en help y cambiado el recurso a un .mid para ahorrar espacio

AndroidManifest.xml
... ... @@ -28,7 +28,7 @@
28 28 </activity>
29 29 <activity android:name=".Prefs" >
30 30 </activity>
31   - <activity android:name=".Help" >
  31 + <activity android:name=".Help" android:configChanges="orientation">
32 32 </activity>
33 33 <activity android:name=".Directoris" >
34 34 </activity>
... ...
res/raw/help.mid 0 → 100644
No preview for this file type
res/raw/help.mp3 deleted
No preview for this file type
res/values/strings.xml
... ... @@ -17,7 +17,7 @@
17 17 <string name="title">Llista de recursos</string>
18 18 <string name="startbuttondescription">Tocar per iniciar</string>
19 19 <string name="title_activity_video">VideoActivity</string>
20   - <string name="helpText"> UPC News 0.7 Alpha rev. 148\n \u00A9 Copyright Universitat Politècnica de Catalunya 2012. Tots els
  20 + <string name="helpText"> UPC News v1.0\n \u00A9 Copyright Universitat Politècnica de Catalunya 2012. Tots els
21 21 drets reservats.\n\n Membres de l\'equip de programadors:\n Marc Siquier \n Albert Quiroga\n Imanol Barba
22 22 \n Marius Oltean\n\n Professor: Josep Pegueroles\n Assignatura: Projecte Bàsic de Enginyeria\n\n Aplicació dissenyada
23 23 per Android 2.3.3 Gingerbread\n\n L\'aplicació permet connectarse a servidors Apache i reproduïr arxius .m3u8
... ... @@ -29,6 +29,6 @@
29 29 <string name="alertVitamioNotInstalled">Alerta! Llibreries de Vitamio no instal·lades!</string>
30 30 <string name="alertLogoDescription">Alerta!</string>
31 31 <string name="itemType">Item type</string>
32   - <string name="buffering_text">Buffering...</string>
  32 + <string name="buffering_text">Buffering</string>
33 33  
34 34 </resources>
35 35 \ No newline at end of file
... ...
src/com/upc/pbe/upcnews/Help.java
1 1 package com.upc.pbe.upcnews;
2 2  
3 3 import android.app.Activity;
  4 +import android.content.res.Configuration;
4 5 import android.media.MediaPlayer;
5 6 import android.os.Bundle;
6 7 import android.util.Log;
... ... @@ -23,5 +24,9 @@ public class Help extends Activity{
23 24 Log.d(TAG, "onStopped");
24 25 super.onDestroy();
25 26 }
  27 + @Override
  28 + public void onConfigurationChanged(Configuration newConfig) {
  29 + super.onConfigurationChanged(newConfig);
  30 + }
26 31  
27 32 }
... ...
src/com/upc/pbe/upcnews/MainActivity.java
... ... @@ -130,9 +130,8 @@ public class MainActivity extends Activity implements OnClickListener
130 130  
131 131 /*
132 132 * COSAS POR HACER
133   - * (RELEASE-CRITICAL) Controlar el flujo de datos al ver el video (intentad reproducir y veréis lo que os digo)
134   - * (NORMAL) Hacer streaming DE VERDAD (appendeando los videos, seria IMPRESIONANTE)
135 133 * (NORMAL) Poner la defaultURL al server de PBE
  134 + * (WHISLIST) Hacer streaming DE VERDAD (appendeando los videos, seria IMPRESIONANTE)
136 135 * Borrar esta puta mierda
137 136 */
138 137 }
... ...