look and feel updates
This commit is contained in:
parent
31053adf67
commit
2c3b47eb16
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" >
|
||||
<shape>
|
||||
<solid
|
||||
android:color="@color/bright_green" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#ffffff" />
|
||||
<corners
|
||||
android:radius="6dp" />
|
||||
<padding
|
||||
android:left="10dp"
|
||||
android:top="10dp"
|
||||
android:right="10dp"
|
||||
android:bottom="10dp" />
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape>
|
||||
<solid
|
||||
android:color="@color/dark_green" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#ffffff" />
|
||||
<corners
|
||||
android:radius="6dp" />
|
||||
<padding
|
||||
android:left="10dp"
|
||||
android:top="10dp"
|
||||
android:right="10dp"
|
||||
android:bottom="10dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
|
@ -4,5 +4,5 @@
|
|||
android:drawable="@drawable/button_off" />
|
||||
<item
|
||||
android:state_checked="true"
|
||||
android:drawable="@drawable/button" />
|
||||
android:drawable="@drawable/button_on" />
|
||||
</selector>
|
|
@ -101,7 +101,7 @@
|
|||
>
|
||||
<TextView
|
||||
android:id="@+id/trafficDown"
|
||||
android:textColor="#ccff2a"
|
||||
android:textColor="@color/bright_green"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
|
@ -112,7 +112,7 @@
|
|||
|
||||
<TextView
|
||||
android:id="@+id/trafficUp"
|
||||
android:textColor="#ccff2a"
|
||||
android:textColor="@color/bright_green"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
|
|
Loading…
Reference in New Issue