summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r--app/src/main/res/values/attrs_cell_view.xml8
-rw-r--r--app/src/main/res/values/colors.xml4
-rw-r--r--app/src/main/res/values/styles.xml6
3 files changed, 18 insertions, 0 deletions
diff --git a/app/src/main/res/values/attrs_cell_view.xml b/app/src/main/res/values/attrs_cell_view.xml
new file mode 100644
index 0000000..2a0577c
--- /dev/null
+++ b/app/src/main/res/values/attrs_cell_view.xml
@@ -0,0 +1,8 @@
+<resources>
+ <declare-styleable name="CellView">
+ <attr name="exampleString" format="string" />
+ <attr name="exampleDimension" format="dimension" />
+ <attr name="exampleColor" format="color" />
+ <attr name="exampleDrawable" format="color|reference" />
+ </declare-styleable>
+</resources> \ No newline at end of file
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index c8524cd..e2337bb 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -2,4 +2,8 @@
<resources>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
+ <color name="light_blue_400">#FF29B6F6</color>
+ <color name="light_blue_600">#FF039BE5</color>
+ <color name="gray_400">#FFBDBDBD</color>
+ <color name="gray_600">#FF757575</color>
</resources> \ No newline at end of file
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..5ed5dd0
--- /dev/null
+++ b/app/src/main/res/values/styles.xml
@@ -0,0 +1,6 @@
+<resources>
+ <style name="Widget.Theme.Netmon.MyView" parent="">
+ <item name="android:background">@color/gray_400</item>
+ <item name="exampleColor">@color/light_blue_400</item>
+ </style>
+</resources> \ No newline at end of file