From 0f2f174ea9ff305d515c5c3443ec1dc8dcbf2810 Mon Sep 17 00:00:00 2001 From: Niels Gras Date: Wed, 15 May 2024 15:33:56 +0200 Subject: [PATCH] Add AndroidStyles.md file for documenting Android styles and themes --- docs/documentation/android/code_documentation/AndroidStyles.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 docs/documentation/android/code_documentation/AndroidStyles.md diff --git a/docs/documentation/android/code_documentation/AndroidStyles.md b/docs/documentation/android/code_documentation/AndroidStyles.md new file mode 100644 index 0000000..c7f631d --- /dev/null +++ b/docs/documentation/android/code_documentation/AndroidStyles.md @@ -0,0 +1,3 @@ +# Creating Styles in android + +Styles and themes on Android make it possible for you to separate the details of our app design from the UI structure and behavior, identical to stylesheets in web design. We will use this in our project to maintain a consistent style, so that we won't have to hardcode it to each element. A style is a set of attributes that determine the appearance of a single View. A style can define features like font color, font size, background color, and a lot more. \ No newline at end of file