Commit 1277cf4f0f02dbfe0e37a10cb10e216974ca9b9a
1 parent
35090a76
--no commit message
Showing
3 changed files
with
17 additions
and
4 deletions
gen/com/upc/pbe/upcnews/R.java
... | ... | @@ -41,14 +41,15 @@ public final class R { |
41 | 41 | public static final int LinearLayout1=0x7f0a0001; |
42 | 42 | public static final int RelativeLayout1=0x7f0a0006; |
43 | 43 | public static final int button=0x7f0a0007; |
44 | - public static final int itemhelp=0x7f0a000c; | |
45 | - public static final int itemprefs=0x7f0a000b; | |
44 | + public static final int itemhelp=0x7f0a000d; | |
45 | + public static final int itemprefs=0x7f0a000c; | |
46 | 46 | public static final int listView1=0x7f0a0003; |
47 | - public static final int menu_settings=0x7f0a000a; | |
48 | - public static final int rowTextView=0x7f0a0009; | |
47 | + public static final int menu_settings=0x7f0a000b; | |
48 | + public static final int rowTextView=0x7f0a000a; | |
49 | 49 | public static final int textView1=0x7f0a0004; |
50 | 50 | public static final int textView2=0x7f0a0005; |
51 | 51 | public static final int textViewTitle=0x7f0a0002; |
52 | + public static final int textViewUrl=0x7f0a0009; | |
52 | 53 | public static final int textViewXml=0x7f0a0008; |
53 | 54 | public static final int videoView1=0x7f0a0000; |
54 | 55 | } |
... | ... | @@ -68,6 +69,7 @@ public final class R { |
68 | 69 | public static final int app_name=0x7f070000; |
69 | 70 | public static final int button=0x7f07000c; |
70 | 71 | public static final int button1=0x7f07000d; |
72 | + public static final int defaultURL=0x7f070012; | |
71 | 73 | public static final int desc=0x7f070009; |
72 | 74 | public static final int descarregar=0x7f070003; |
73 | 75 | public static final int dir=0x7f07000a; | ... | ... |
res/layout/main_activity.xml
... | ... | @@ -37,4 +37,14 @@ |
37 | 37 | android:textColorHint="@color/Whyte_POwaH" |
38 | 38 | android:textStyle="bold" /> |
39 | 39 | |
40 | + <TextView | |
41 | + android:id="@+id/textViewUrl" | |
42 | + android:layout_width="wrap_content" | |
43 | + android:layout_height="wrap_content" | |
44 | + android:layout_alignTop="@+id/textViewXml" | |
45 | + android:layout_centerHorizontal="true" | |
46 | + android:layout_marginTop="21dp" | |
47 | + android:text="@string/defaultURL" | |
48 | + android:textAppearance="?android:attr/textAppearanceSmall" /> | |
49 | + | |
40 | 50 | </RelativeLayout> |
41 | 51 | \ No newline at end of file | ... | ... |
res/values/strings.xml
... | ... | @@ -18,5 +18,6 @@ |
18 | 18 | <string name="startbuttondescription">Click to Start</string> |
19 | 19 | <string name="hello_world">Hello world!</string> |
20 | 20 | <string name="title_activity_video">VideoActivity</string> |
21 | + <string name="defaultURL">http://imanolbarba.myftp.biz/PBE</string> | |
21 | 22 | |
22 | 23 | </resources> |
23 | 24 | \ No newline at end of file | ... | ... |