<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2012 Tobias Brunner
+ Copyright (C) 2012-2013 Tobias Brunner
Hochschule fuer Technik Rapperswil
This program is free software; you can redistribute it and/or modify it
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
-->
-<shape xmlns:android="http://schemas.android.com/apk/res/android">
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
- <solid
- android:color="#333" />
+ <item>
+ <shape>
+ <solid
+ android:color="@color/panel_separator" />
+ </shape>
+ </item>
-</shape>
\ No newline at end of file
+ <item android:bottom="2dp">
+ <shape>
+ <solid
+ android:color="@color/panel_background" />
+ </shape>
+ </item>
+
+</layer-list>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="@drawable/vpn_state_background"
+ android:paddingBottom="2dp"
+ android:background="@drawable/state_background"
android:orientation="vertical" >
<LinearLayout
</LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="2dp"
- android:background="?android:attr/listDivider" />
-
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2012 Tobias Brunner
+ Copyright (C) 2012-2013 Tobias Brunner
Copyright (C) 2012 Giuliano Grassi
Copyright (C) 2012 Ralf Sager
Hochschule fuer Technik Rapperswil
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:layout_margin="5dp"
- android:background="@drawable/vpn_state_background"
+ android:paddingBottom="2dp"
+ android:background="@drawable/state_background"
android:orientation="vertical" >
<GridLayout
style="?android:attr/borderlessButtonStyle" >
</Button>
- <View
- android:layout_width="match_parent"
- android:layout_height="2dp"
- android:background="?android:attr/listDivider" />
-
</LinearLayout>
<color
name="success_text">#99CC00</color>
+ <color
+ name="panel_background">#333333</color>
+
+ <color
+ name="panel_separator">#5a5a5a</color>
+
</resources>