Commit b34432e97927981dede965065dd555754f32878d
1 parent
5796611f
--no commit message
Showing
4 changed files
with
11 additions
and
20 deletions
gen/com/upc/pbe/upcnews/R.java
... | ... | @@ -13,12 +13,13 @@ public final class R { |
13 | 13 | public static final class color { |
14 | 14 | public static final int Black=0x7f050002; |
15 | 15 | public static final int Blue=0x7f050004; |
16 | - public static final int Gay=0x7f050006; | |
17 | - public static final int Gray=0x7f050009; | |
18 | - public static final int Green=0x7f050008; | |
16 | + public static final int BlueAndroid=0x7f050005; | |
17 | + public static final int Gay=0x7f050007; | |
18 | + public static final int Gray=0x7f05000a; | |
19 | + public static final int Green=0x7f050009; | |
19 | 20 | public static final int Orange=0x7f050003; |
20 | - public static final int Red=0x7f050007; | |
21 | - public static final int White=0x7f050005; | |
21 | + public static final int Red=0x7f050008; | |
22 | + public static final int White=0x7f050006; | |
22 | 23 | public static final int Whyte_POwaH=0x7f050001; |
23 | 24 | public static final int backgroundmain=0x7f050000; |
24 | 25 | } | ... | ... |
res/drawable/selectedonlist2.xml
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | -<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
3 | - | |
4 | - <item android:state_pressed="true"> | |
5 | - <shape> | |
6 | - <solid android:color="@color/Black"/> | |
7 | - </shape> | |
8 | - </item> | |
9 | - | |
10 | - <item> | |
11 | - <shape> | |
12 | - <solid android:color="@color/White"/> | |
13 | - </shape> | |
14 | - </item> | |
15 | - | |
2 | + <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
3 | + <item android:state_pressed="false" android:color="@color/BlueAndroid" /> | |
4 | + <item android:state_pressed="true" android:color="@color/Black" /> | |
16 | 5 | </selector> |
17 | 6 | \ No newline at end of file | ... | ... |
res/layout/rowlayout.xml
... | ... | @@ -4,7 +4,7 @@ |
4 | 4 | android:layout_height="wrap_content" |
5 | 5 | android:background="@drawable/selectedonlist" |
6 | 6 | android:padding="10dp" |
7 | - android:textColor="@color/White" | |
7 | + android:textColor="@drawable/selectedonlist2" | |
8 | 8 | android:textSize="16sp" > |
9 | 9 | |
10 | 10 | </TextView> |
11 | 11 | \ No newline at end of file | ... | ... |
res/values/colors.xml
... | ... | @@ -5,6 +5,7 @@ |
5 | 5 | <color name="Black">#000000</color> |
6 | 6 | <color name="Orange">#FFBF00</color> |
7 | 7 | <color name="Blue">#0080FF</color> |
8 | + <color name="BlueAndroid">#3cacfb</color> | |
8 | 9 | <color name="White">#FFFFFF</color> |
9 | 10 | <color name="Gay">#FE2EF7</color> |
10 | 11 | <color name="Red">#FF0000</color> | ... | ... |