diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2018-04-19 23:03:13 +0200 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2018-04-19 23:03:13 +0200 |
commit | 4e6fc4fcdbcc3c75be13b3f8b80c24e4648fe354 (patch) | |
tree | 9588d81ee5e3e470d242f82b015fac6e34d54014 /app/src/main/res/values | |
parent | 7294c6bd32e362b4c0a64cadbf4dd2c191e1ad8e (diff) |
Added details view, improved observations list
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/attrs_square_image_view.xml | 8 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/app/src/main/res/values/attrs_square_image_view.xml b/app/src/main/res/values/attrs_square_image_view.xml new file mode 100644 index 0000000..13e655a --- /dev/null +++ b/app/src/main/res/values/attrs_square_image_view.xml @@ -0,0 +1,8 @@ +<resources> + <declare-styleable name="SquareImageView"> + <attr name="exampleString" format="string" /> + <attr name="exampleDimension" format="dimension" /> + <attr name="exampleColor" format="color" /> + <attr name="exampleDrawable" format="color|reference" /> + </declare-styleable> +</resources> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 1f045bd..1561e86 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -88,4 +88,11 @@ <string name="hello_blank_fragment">Hello blank fragment</string> <string name="my_observations">My observations</string> <string name="all_observations">All observations</string> + <string name="created">Created:</string> + <string name="author">Author:</string> + <string name="population">Population:</string> + <string name="place">Place:</string> + <string name="latitude">Latitude:</string> + <string name="longitude">Longitude:</string> + <string name="comment">Comment:</string> </resources> |