Commit 44dc9d20123caf38209af29bb5cf6933b7cef09a

Authored by Imanol-Mikel Barba Sabariego
1 parent e579aee9

--no commit message

gen/com/upc/pbe/upcnews/R.java
... ... @@ -17,6 +17,7 @@ public final class R {
17 17 public static final int ic_action_search=0x7f020000;
18 18 public static final int ic_launcher=0x7f020001;
19 19 public static final int ic_menu_name=0x7f020002;
  20 + public static final int ic_startbutton=0x7f020003;
20 21 }
21 22 public static final class id {
22 23 public static final int AbsoluteLayout1=0x7f090006;
... ...
res/drawable-hdpi/ic_startbutton.png 0 → 100644

1.35 KB

res/drawable-ldpi/ic_startbutton.png 0 → 100644

608 Bytes

res/drawable-mdpi/ic_startbutton.png 0 → 100644

848 Bytes

res/drawable-xhdpi/ic_startbutton.png 0 → 100644

1.95 KB

res/layout/main_activity.xml
... ... @@ -5,14 +5,14 @@
5 5 android:layout_width="wrap_content"
6 6 android:layout_height="match_parent"
7 7 tools:ignore="Deprecated" >
8   -
  8 +
9 9 <ImageButton
10 10 android:id="@+id/button"
11 11 android:layout_width="171dp"
12 12 android:layout_height="161dp"
13 13 android:layout_x="78dp"
14 14 android:layout_y="88dp"
15   - android:background="@drawable/ic_launcher"
  15 + android:background="@drawable/ic_startbutton"
16 16 android:contentDescription="@string/startbuttondescription" />
17 17  
18 18 <TextView
... ...