Commit 640f3174608fa0c6e63beebff5b095a7ea5f2706
1 parent
6ec311bb
--no commit message
Showing
2 changed files
with
7 additions
and
1 deletions
src/com/upc/pbe/upcnews/MainActivity.java
... | ... | @@ -106,7 +106,7 @@ public class MainActivity extends Activity implements OnClickListener { |
106 | 106 | } |
107 | 107 | /* |
108 | 108 | * COSAS POR HACER |
109 | - * Qué coño pasa con los codecs -- Yo | |
109 | + * Que cojones pasa con los codecs -- Yo | |
110 | 110 | * Descarga en segundo plano (Mejora dificil) |
111 | 111 | * Lentitud descarga -- Todos (este miercoles) |
112 | 112 | * CRASH AL DARLE A LA TECLA MENU DENTRO DE LAS PREFERENCES -- Marc | ... | ... |
src/com/upc/pbe/upcnews/Prefs.java
... | ... | @@ -3,6 +3,7 @@ package com.upc.pbe.upcnews; |
3 | 3 | import android.os.Bundle; |
4 | 4 | import android.preference.PreferenceActivity; |
5 | 5 | import android.util.Log; |
6 | +import android.view.Menu; | |
6 | 7 | |
7 | 8 | //Menu de preferencies |
8 | 9 | public class Prefs extends PreferenceActivity { |
... | ... | @@ -15,5 +16,10 @@ public class Prefs extends PreferenceActivity { |
15 | 16 | super.onCreate(savedInstanceState); |
16 | 17 | addPreferencesFromResource(R.xml.prefs); |
17 | 18 | } |
19 | + | |
20 | + @Override | |
21 | + public boolean onCreateOptionsMenu(Menu menu) { | |
22 | + return false; | |
23 | + } | |
18 | 24 | |
19 | 25 | } |
20 | 26 | \ No newline at end of file | ... | ... |