Commit 97a606f0b9b3aa7f1783956e25a16b88abd90313
1 parent
04c229d8
Retoque en Descarrega, no hacia bien el salto de linea
Showing
25 changed files
with
4 additions
and
29 deletions
bin/AndroidManifest.xml deleted
1 | -<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | - package="com.upc.pbe.upcnews" | ||
3 | - android:versionCode="1" | ||
4 | - android:versionName="1.0" > | ||
5 | - | ||
6 | - <uses-sdk | ||
7 | - android:minSdkVersion="8" | ||
8 | - android:targetSdkVersion="15" /> | ||
9 | - <uses-permission android:name="android.permission.INTERNET"/> | ||
10 | - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
11 | - | ||
12 | - <application | ||
13 | - android:icon="@drawable/ic_launcher" | ||
14 | - android:label="@string/app_name" | ||
15 | - android:theme="@style/AppTheme" > | ||
16 | - <activity | ||
17 | - android:name=".MainActivity" | ||
18 | - android:label="@string/title_activity_main" > | ||
19 | - <intent-filter> | ||
20 | - <action android:name="android.intent.action.MAIN" /> | ||
21 | - | ||
22 | - <category android:name="android.intent.category.LAUNCHER" /> | ||
23 | - </intent-filter> | ||
24 | - </activity> | ||
25 | - <activity android:name=".Descarrega"></activity> | ||
26 | - </application> | ||
27 | - | ||
28 | -</manifest> | ||
29 | \ No newline at end of file | 0 | \ No newline at end of file |
bin/UPC_NEWS_v0.apk
0 → 100644
No preview for this file type
bin/classes.dex
0 → 100644
No preview for this file type
bin/classes/com/upc/pbe/upcnews/BuildConfig.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/Descarrega.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/HTMLParser.class
0 → 100644
No preview for this file type
bin/classes/com/upc/pbe/upcnews/MainActivity.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R$string.class renamed to bin/classes/com/upc/pbe/upcnews/Parser.class
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R$attr.class renamed to bin/classes/com/upc/pbe/upcnews/Playlist.class
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R$drawable.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R$id.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R$layout.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R$menu.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R$style.class deleted
No preview for this file type
bin/classes/com/upc/pbe/upcnews/R.class deleted
No preview for this file type
bin/jarlist.cache
0 → 100644
bin/res/drawable-hdpi/ic_action_search.png
0 → 100644
409 Bytes
bin/res/drawable-hdpi/ic_launcher.png
0 → 100644
8.33 KB
bin/res/drawable-ldpi/ic_launcher.png
0 → 100644
3.07 KB
bin/res/drawable-mdpi/ic_action_search.png
0 → 100644
311 Bytes
bin/res/drawable-mdpi/ic_launcher.png
0 → 100644
4.54 KB
bin/res/drawable-xhdpi/ic_action_search.png
0 → 100644
491 Bytes
bin/res/drawable-xhdpi/ic_launcher.png
0 → 100644
12.7 KB
bin/resources.ap_
0 → 100644
No preview for this file type
src/com/upc/pbe/upcnews/Descarrega.java
@@ -83,7 +83,7 @@ public class Descarrega extends AsyncTask<Object, Object, Object>{ | @@ -83,7 +83,7 @@ public class Descarrega extends AsyncTask<Object, Object, Object>{ | ||
83 | String inputLine; | 83 | String inputLine; |
84 | while ((inputLine = in.readLine()) != null) { | 84 | while ((inputLine = in.readLine()) != null) { |
85 | //Log.d(TAG, inputLine); | 85 | //Log.d(TAG, inputLine); |
86 | - html = html + "\r" + inputLine; | 86 | + html = html + "\n" + inputLine; |
87 | } | 87 | } |
88 | Log.d(TAG, "Descarrega finalitzada"); | 88 | Log.d(TAG, "Descarrega finalitzada"); |
89 | 89 |