Commit 4036c418 authored by Nadun K Bandara's avatar Nadun K Bandara

All the resource files added

- strings.xml
- dimen and themes
parent ff71e0b5
Subproject commit 1a3693d3d93d6a0dfc8f46ea0bb2069879d6238d
package com.jachdev.consumerprotection.data;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import okhttp3.MediaType;
import okhttp3.MultipartBody;
import okhttp3.RequestBody;
/**
* Created by Tharushaa on 9/28/2021.
*/
public class BaseRequest {
private List<MultipartBody.Part> parts = new ArrayList<>();
public void setImageParts(String key, File file){
RequestBody requestFile =
RequestBody.create(MediaType.parse("multipart/form-data"), file);
MultipartBody.Part body =
MultipartBody.Part.createFormData(key, file.getName(), requestFile);
parts.add(body);
}
public void setTextParts(String key, String value){
MultipartBody.Part body =
MultipartBody.Part.createFormData(key, value);
parts.add(body);
}
public List<MultipartBody.Part> getMultiParts() {
return parts;
}
}
package com.jachdev.consumerprotection.ui.widget;
import android.content.Context;
import android.content.res.TypedArray;
import android.os.Build;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.FrameLayout;
import com.jachdev.commonlibs.widget.CustomTextView;
import com.jachdev.consumerprotection.R;
import androidx.annotation.Nullable;
/**
* Created by Tharushaa on 6/5/2021.
*/
public class HeaderView extends FrameLayout {
private CustomTextView tvHeader;
public HeaderView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
initViews();
getHeaderText(attrs);
}
private void initViews(){
View view = LayoutInflater.from(this.getContext())
.inflate(R.layout.layout_header_view, null);
tvHeader = view.findViewById(R.id.tv_header);
this.addView(view);
}
private void getHeaderText(AttributeSet attrs) {
TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.HeaderView);
String text = a.getString(R.styleable.HeaderView_text);
setHeaderText(text);
a.recycle();
}
public void setHeaderText(String text){
tvHeader.setAnyText(text);
}
}
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checkable="true" android:drawable="@drawable/ic_admin" /> <!-- pressed -->
<item android:state_checked="true" android:drawable="@drawable/ic_admin" /> <!-- focused -->
<item android:drawable="@drawable/ic_admin" /> <!-- default -->
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/bg_button_selected" android:state_selected="true" />
<item android:drawable="@drawable/bg_button_selected" android:state_pressed="true" />
<item android:drawable="@drawable/bg_button_normal" />
</selector>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="@color/colorPrimary"/>
<corners android:radius="@dimen/default_radius"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners android:radius="@dimen/margin_large"/>
<solid android:color="#FAFAFA"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="@color/colorPrimaryDark"/>
<corners android:radius="@dimen/default_radius"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<corners android:radius="40dp"/>
<stroke android:color="@color/colorPrimary" android:width="1dp"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checkable="true" android:drawable="@drawable/ic_patient" /> <!-- pressed -->
<item android:state_checked="true" android:drawable="@drawable/ic_patient" /> <!-- focused -->
<item android:drawable="@drawable/ic_patient" /> <!-- default -->
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<stroke android:color="@color/colorPrimary" android:width="@dimen/stroke"/>
<corners android:radius="@dimen/default_radius"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#F0F0F0"/>
<corners android:bottomLeftRadius="50dp"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android"
android:opacity="opaque">
<item
android:drawable="@color/whiteTwo"/>
<item>
<bitmap
android:src="@drawable/ic_launcher"
android:gravity="center"/>
</item>
</layer-list>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="@color/colorPrimary"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checkable="true" android:drawable="@drawable/ic_doctor" /> <!-- pressed -->
<item android:state_checked="true" android:drawable="@drawable/ic_doctor" /> <!-- focused -->
<item android:drawable="@drawable/ic_doctor" /> <!-- default -->
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<corners android:radius="45dp"/>
<solid android:color="@color/whiteTwo"/>
</shape>
\ No newline at end of file
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="512dp"
android:height="512dp"
android:viewportWidth="512"
android:viewportHeight="512">
<path
android:pathData="M496.375,139.958L372.042,15.625C361.958,5.552 348.583,0 334.333,0H177.667c-14.25,0 -27.625,5.552 -37.708,15.625L15.625,139.958C5.542,150.031 0,163.427 0,177.677v156.646c0,14.25 5.542,27.646 15.625,37.719l124.333,124.333C150.042,506.448 163.417,512 177.667,512h156.667c14.25,0 27.625,-5.552 37.708,-15.625l124.333,-124.333C506.458,361.969 512,348.573 512,334.323V177.677C512,163.427 506.458,150.031 496.375,139.958z"
android:fillColor="#303C42"/>
<path
android:pathData="M490.667,334.323c0,8.552 -3.333,16.583 -9.375,22.635L356.958,481.292c-5.958,5.958 -14.208,9.375 -22.625,9.375H177.667c-8.417,0 -16.667,-3.417 -22.625,-9.375L30.708,356.958c-6.042,-6.052 -9.375,-14.083 -9.375,-22.635V177.677c0,-8.552 3.333,-16.583 9.375,-22.635L155.042,30.708c5.958,-5.958 14.208,-9.375 22.625,-9.375h156.667c8.417,0 16.667,3.417 22.625,9.375l124.333,124.333c6.042,6.052 9.375,14.083 9.375,22.635V334.323z"
android:fillColor="#E53935"/>
<path
android:fillColor="#FF000000"
android:pathData="M481.292,155.042l-1.573,-1.573c0.086,0.961 0.281,1.898 0.281,2.875V312.99c0,8.552 -3.333,16.583 -9.375,22.635L346.292,459.958c-5.958,5.958 -14.208,9.375 -22.625,9.375H167c-8.417,0 -16.667,-3.417 -22.625,-9.375l-122.76,-122.76c0.668,7.454 3.742,14.4 9.094,19.76l124.333,124.333c5.958,5.958 14.208,9.375 22.625,9.375h156.667c8.417,0 16.667,-3.417 22.625,-9.375l124.333,-124.333c6.042,-6.052 9.375,-14.083 9.375,-22.635V177.677C490.667,169.125 487.333,161.094 481.292,155.042z"
android:strokeAlpha="0.1"
android:fillAlpha="0.1"/>
<path
android:pathData="M363.833,203.75c-12.792,2.75 -23.667,10.385 -30.771,21.802L320,248.177V117.333c0,-17.646 -14.354,-32 -32,-32c-4.212,0 -8.215,0.863 -11.901,2.349C272.41,74.082 260.085,64 245.333,64c-11.365,0 -21.299,5.997 -26.978,14.949c-4.656,-2.647 -9.96,-4.283 -15.689,-4.283c-17.646,0 -32,14.354 -32,32v23.298C167.314,128.77 163.758,128 160,128c-17.646,0 -32,14.354 -32,32v167.24C128,393.823 182.167,448 248.75,448c53.729,0 100.229,-34.583 115.708,-86.146l40.458,-139.26c1.292,-4.469 -0.458,-9.271 -4.333,-11.854C389.688,203.479 376.688,200.979 363.833,203.75z"
android:fillColor="#303C42"/>
<path
android:pathData="M344,355.813c-12.729,42.375 -51,70.854 -95.25,70.854c-54.813,0 -99.417,-44.604 -99.417,-99.427V160c0,-5.885 4.792,-10.667 10.667,-10.667s10.667,4.781 10.667,10.667v64c0,5.896 4.771,10.667 10.667,10.667c5.896,0 10.667,-4.771 10.667,-10.667V106.667C192,100.781 196.792,96 202.667,96s10.667,4.781 10.667,10.667v106.667c0,5.896 4.771,10.667 10.667,10.667c5.896,0 10.667,-4.771 10.667,-10.667V96c0,-5.885 4.792,-10.667 10.667,-10.667S256,90.115 256,96v128c0,5.896 4.771,10.667 10.667,10.667c5.896,0 10.667,-4.771 10.667,-10.667V117.333c0,-5.885 4.792,-10.667 10.667,-10.667s10.667,4.781 10.667,10.667V288c0,4.833 3.25,9.052 7.917,10.302c4.688,1.292 9.563,-0.792 11.979,-4.969l32.771,-56.802c3.854,-6.156 9.896,-10.396 17,-11.927c4.583,-0.979 9.229,-0.771 13.604,0.604L344,355.813z"
android:fillColor="#FFFFFF"/>
<path
android:fillColor="#FF000000"
android:pathData="M377.641,224.451L342,347.146C329.271,389.521 291,418 246.75,418c-45.995,0 -84.432,-31.564 -95.728,-74.063c7.999,46.861 48.632,82.729 97.728,82.729c44.25,0 82.521,-28.479 95.25,-70.854l37.938,-130.604C380.539,224.77 379.083,224.651 377.641,224.451z"
android:strokeAlpha="0.1"
android:fillAlpha="0.1"/>
<path
android:pathData="M496.375,139.958L372.042,15.625C361.958,5.552 348.583,0 334.333,0H177.667c-14.25,0 -27.625,5.552 -37.708,15.625L15.625,139.958C5.542,150.031 0,163.427 0,177.677v156.646c0,14.25 5.542,27.646 15.625,37.719l124.333,124.333C150.042,506.448 163.417,512 177.667,512h156.667c14.25,0 27.625,-5.552 37.708,-15.625l124.333,-124.333C506.458,361.969 512,348.573 512,334.323V177.677C512,163.427 506.458,150.031 496.375,139.958z">
<aapt:attr name="android:fillColor">
<gradient
android:startY="141.85175"
android:startX="11.17013"
android:endY="370.19272"
android:endX="500.83334"
android:type="linear">
<item android:offset="0" android:color="#33FFFFFF"/>
<item android:offset="1" android:color="#00FFFFFF"/>
</gradient>
</aapt:attr>
</path>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="474.565"
android:viewportHeight="474.565">
<path
android:fillColor="#c43300"
android:pathData="M255.204,102.3c-0.606,-11.321 -12.176,-9.395 -23.465,-9.395C240.078,95.126 247.967,98.216 255.204,102.3z"/>
<path
android:fillColor="#c43300"
android:pathData="M134.524,73.928c-43.825,0 -63.997,55.471 -28.963,83.37c11.943,-31.89 35.718,-54.788 66.886,-63.826C163.921,81.685 150.146,73.928 134.524,73.928z"/>
<path
android:fillColor="#c43300"
android:pathData="M43.987,148.617c1.786,5.731 4.1,11.229 6.849,16.438L36.44,179.459c-3.866,3.866 -3.866,10.141 0,14.015l25.375,25.383c1.848,1.848 4.38,2.888 7.019,2.888c2.61,0 5.125,-1.04 7.005,-2.888l14.38,-14.404c2.158,1.142 4.55,1.842 6.785,2.827c0,-0.164 -0.016,-0.334 -0.016,-0.498c0,-11.771 1.352,-22.875 3.759,-33.302c-17.362,-11.174 -28.947,-30.57 -28.947,-52.715c0,-34.592 28.139,-62.739 62.723,-62.739c23.418,0 43.637,13.037 54.43,32.084c11.523,-1.429 22.347,-1.429 35.376,1.033c-1.676,-5.07 -3.648,-10.032 -6.118,-14.683l14.396,-14.411c1.878,-1.856 2.918,-4.38 2.918,-7.004c0,-2.625 -1.04,-5.148 -2.918,-7.004l-25.361,-25.367c-1.94,-1.941 -4.472,-2.904 -7.003,-2.904c-2.532,0 -5.063,0.963 -6.989,2.904l-14.442,14.411c-5.217,-2.764 -10.699,-5.078 -16.444,-6.825V9.9c0,-5.466 -4.411,-9.9 -9.893,-9.9h-35.888c-5.451,0 -9.909,4.434 -9.909,9.9v20.359c-5.73,1.747 -11.213,4.061 -16.446,6.825L75.839,22.689c-1.942,-1.941 -4.473,-2.904 -7.005,-2.904c-2.531,0 -5.077,0.963 -7.003,2.896L36.44,48.048c-1.848,1.864 -2.888,4.379 -2.888,7.012c0,2.632 1.04,5.148 2.888,7.004l14.396,14.403c-2.75,5.218 -5.063,10.708 -6.817,16.438H23.675c-5.482,0 -9.909,4.441 -9.909,9.915v35.889c0,5.458 4.427,9.908 9.909,9.908H43.987z"/>
<path
android:fillColor="#c43300"
android:pathData="M354.871,340.654c15.872,-8.705 26.773,-25.367 26.773,-44.703c0,-28.217 -22.967,-51.168 -51.184,-51.168c-9.923,0 -19.118,2.966 -26.975,7.873c-4.705,18.728 -12.113,36.642 -21.803,52.202C309.152,310.022 334.357,322.531 354.871,340.654z"/>
<path
android:fillColor="#c43300"
android:pathData="M460.782,276.588c0,-5.909 -4.799,-10.693 -10.685,-10.693H428.14c-1.896,-6.189 -4.411,-12.121 -7.393,-17.75l15.544,-15.544c2.02,-2.004 3.137,-4.721 3.137,-7.555c0,-2.835 -1.118,-5.553 -3.137,-7.563l-27.363,-27.371c-2.08,-2.09 -4.829,-3.138 -7.561,-3.138c-2.734,0 -5.467,1.048 -7.547,3.138l-15.576,15.552c-5.623,-2.982 -11.539,-5.481 -17.751,-7.369v-21.958c0,-5.901 -4.768,-10.685 -10.669,-10.685H311.11c-2.594,0 -4.877,1.04 -6.739,2.578c3.26,11.895 5.046,24.793 5.046,38.552c0,8.735 -0.682,17.604 -1.956,26.423c7.205,-2.656 14.876,-4.324 22.999,-4.324c36.99,0 67.086,30.089 67.086,67.07c0,23.637 -12.345,44.353 -30.872,56.303c13.48,14.784 24.195,32.324 31.168,51.976c1.148,0.396 2.344,0.684 3.54,0.684c2.733,0 5.467,-1.04 7.563,-3.13l27.379,-27.371c2.004,-2.004 3.106,-4.721 3.106,-7.555s-1.102,-5.551 -3.106,-7.563l-15.576,-15.552c2.982,-5.621 5.497,-11.555 7.393,-17.75h21.957c2.826,0 5.575,-1.118 7.563,-3.138c2.004,-1.996 3.138,-4.72 3.138,-7.555L460.782,276.588z"/>
<path
android:fillColor="#c43300"
android:pathData="M376.038,413.906c-16.602,-48.848 -60.471,-82.445 -111.113,-87.018c-16.958,17.958 -37.954,29.351 -61.731,29.351c-23.759,0 -44.771,-11.392 -61.713,-29.351c-50.672,4.573 -94.543,38.17 -111.145,87.026l-9.177,27.013c-2.625,7.773 -1.368,16.338 3.416,23.007c4.783,6.671 12.486,10.631 20.685,10.631h315.853c8.215,0 15.918,-3.96 20.702,-10.631c4.767,-6.669 6.041,-15.234 3.4,-23.007L376.038,413.906z"/>
<path
android:fillColor="#c43300"
android:pathData="M120.842,206.782c0,60.589 36.883,125.603 82.352,125.603c45.487,0 82.368,-65.014 82.368,-125.603C285.563,81.188 120.842,80.939 120.842,206.782z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="512dp"
android:height="512dp"
android:viewportWidth="512"
android:viewportHeight="512">
<path
android:pathData="m155.537,0c81.513,-0.001 147.711,66.547 147.301,148.059 -0.186,36.999 -14.017,70.769 -36.714,96.544 -2.178,2.473 -2.723,6 -1.293,8.969 5.743,11.931 12.243,20.927 16.635,26.321 2.432,2.986 0.622,7.484 -3.196,7.989 -17.006,2.247 -37.666,-6.284 -46.577,-10.494 -2.338,-1.105 -5.051,-1.034 -7.336,0.176 -20.007,10.593 -42.743,16.717 -66.883,17.028 -80.288,1.034 -148.198,-65.074 -149.225,-145.363 -1.051,-82.235 65.295,-149.228 147.288,-149.229z"
android:fillColor="#fd6930"/>
<path
android:pathData="m281.461,279.893c2.433,2.988 0.629,7.487 -3.188,7.99 -8.116,1.07 -17.05,-0.315 -25.155,-2.506 0.346,-0.031 0.692,-0.073 1.038,-0.115 3.817,-0.503 5.62,-5.002 3.188,-7.99 -4.383,-5.39 -10.884,-14.386 -16.63,-26.319 -1.426,-2.967 -0.881,-6.501 1.29,-8.976 22.701,-25.774 36.532,-59.538 36.721,-96.541 0.357,-71.921 -51.139,-132.203 -119.264,-145.384 79.712,2.097 143.779,67.811 143.381,148.005 -0.189,37.004 -14.019,70.768 -36.721,96.541 -2.17,2.475 -2.716,6.008 -1.29,8.976 5.746,11.933 12.247,20.93 16.63,26.319z"
android:fillColor="#fd5426"/>
<path
android:pathData="M231.79,147.231m-19.93,0a19.93,19.93 0,1 1,39.86 0a19.93,19.93 0,1 1,-39.86 0"
android:fillColor="#ffeee7"/>
<path
android:pathData="M155.538,147.231m-19.93,0a19.93,19.93 0,1 1,39.86 0a19.93,19.93 0,1 1,-39.86 0"
android:fillColor="#ffeee7"/>
<path
android:pathData="M79.287,147.231m-19.93,0a19.93,19.93 0,1 1,39.86 0a19.93,19.93 0,1 1,-39.86 0"
android:fillColor="#ffeee7"/>
<path
android:pathData="m494.271,104.789c-7.902,-18.878 -20.417,-35.84 -36.577,-48.41 -17.547,-13.648 -42.648,-29.046 -65.537,-19.01 -6.315,2.769 -11.448,7.21 -15.429,12.69 -2.733,3.72 -4.925,7.95 -6.629,12.611 -0.365,0.99 -15.286,48.255 -20.82,71.272 -3.701,15.411 -0.899,26.044 8.952,34.449 3.08,2.63 6.842,5.043 11.321,7.315 10.598,5.374 21.607,9.886 32.653,14.344 1.541,0.622 3.082,1.242 4.621,1.863l12.98,4.92 -4.774,13.624c-25.58,71.625 -65.697,133.829 -120.605,186.447l-8.986,9.631 -11.373,-10.807c-8.599,-9.118 -16.966,-18.7 -26.757,-26.397 -17.265,-13.574 -30.842,-14.365 -48.308,-1.164 -20.522,15.51 -40.772,31.783 -58.877,49.977 -20.005,20.104 -18.608,39.351 1.008,59.909 16.988,17.804 38.043,28.062 62.128,32.42 31.066,5.621 66.331,-4.951 93.499,-20.769 23.534,-13.703 44.904,-29.093 64.255,-46.039l27.108,-26.118c48.39,-51.286 81.73,-114.084 103.177,-185.511 11.931,-39.739 19.384,-88.033 2.97,-127.247z"
android:fillColor="#a79ba7"/>
<path
android:pathData="m419.806,196.833c15.407,-44.569 29.122,-91.404 40.784,-138.126 -0.947,-0.798 -1.921,-1.57 -2.896,-2.327 -15.791,-12.205 -37.009,-25.426 -57.82,-21.42 -16.062,3.085 -26.156,15.751 -30.798,30.716 -7.009,22.638 -14.262,45.25 -19.797,68.267 -4.858,20.23 1.475,32.232 20.27,41.758 12.07,6.13 24.709,11.15 37.279,16.211z"
android:fillColor="#7a6d79"/>
<path
android:pathData="m285.44,406.536c-15.809,16.147 -32.456,31.924 -49.744,47.534 -19.12,17.253 -37.293,32.827 -59.457,48.389 -13.044,-5.615 -24.817,-13.626 -35.101,-24.411 -19.621,-20.554 -21.014,-39.796 -1.015,-59.904 18.105,-18.2 38.362,-34.465 58.876,-49.972 17.469,-13.207 31.041,-12.408 48.307,1.164 9.797,7.699 18.159,17.28 26.765,26.386z"
android:fillColor="#7a6d79"/>
<path
android:pathData="m491.302,232.032c-32.958,109.753 -93.983,199.123 -194.542,257.669 -27.165,15.825 -62.43,26.392 -93.5,20.77 -24.086,-4.356 -45.135,-14.612 -62.129,-32.422 -8.132,-8.529 -13.143,-16.833 -14.773,-25.062 0.44,0.483 0.901,0.976 1.363,1.459 16.994,17.81 38.044,28.066 62.129,32.422 31.07,5.622 66.335,-4.946 93.5,-20.77 100.559,-58.546 161.583,-147.915 194.542,-257.669 11.93,-39.739 19.387,-88.028 2.972,-127.241 -0.215,-0.504 -0.429,-1.008 -0.654,-1.513 5.482,7.5 10.192,15.857 14.065,25.116 16.414,39.213 8.957,87.503 -2.973,127.241z"
android:fillColor="#918291"/>
<path
android:pathData="m189.85,486.868c-24.086,-4.355 -45.135,-14.612 -62.129,-32.422 -0.461,-0.483 -0.923,-0.976 -1.363,-1.459 0.011,0.043 0.021,0.086 0.032,0.129 0.075,0.375 0.15,0.762 0.247,1.137 0.429,1.67 0.992,3.304 1.634,4.903 1.29,3.211 2.883,6.188 4.824,9.055 1.877,2.771 3.965,5.396 6.201,7.885 2.362,2.63 4.876,5.122 7.503,7.487 4.777,4.298 9.836,8.149 15.306,11.525 3.604,2.224 7.341,4.24 11.19,6.029 0.762,0.354 1.523,0.708 2.296,1.03 0.215,0.107 0.429,0.193 0.644,0.29 6.952,-4.882 13.507,-9.752 19.816,-14.687 -2.081,-0.226 -4.152,-0.526 -6.201,-0.902z"
android:fillColor="#685e68"/>
</vector>
<vector android:height="80dp" android:viewportHeight="388.227"
android:viewportWidth="388.227" android:width="80dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#ff6601" android:pathData="M194.113,190.505c36.691,0 66.438,-36.129 66.438,-80.695c0,-44.567 -9.768,-80.696 -66.438,-80.696c-56.672,0 -66.438,36.129 -66.438,80.696C127.676,154.376 157.422,190.505 194.113,190.505z"/>
<path android:fillColor="#ff6601" android:pathData="M319.455,310.459c-1.229,-77.637 -11.369,-99.759 -88.959,-113.763c0,0 -10.924,13.917 -36.381,13.917c-25.457,0 -36.379,-13.917 -36.379,-13.917c-76.744,13.85 -87.502,35.645 -88.916,111.24c-0.115,6.173 -0.168,6.497 -0.189,5.78c0.004,1.343 0.01,3.826 0.01,8.157c0,0 18.473,37.239 125.475,37.239s125.477,-37.239 125.477,-37.239c0,-2.782 0.002,-4.718 0.004,-6.033C319.576,316.283 319.533,315.424 319.455,310.459z"/>
<path android:fillColor="#ff6601" android:pathData="M286.313,176.097c29.801,0 53.959,-29.343 53.959,-65.539c0,-36.197 -7.932,-65.54 -53.959,-65.54c-7.742,0 -14.404,0.833 -20.135,2.388c10.631,19.598 12.088,43.402 12.088,62.403c0,21.514 -5.832,42.054 -16.572,59.061C269.076,173.48 277.441,176.097 286.313,176.097z"/>
<path android:fillColor="#ff6601" android:pathData="M388.111,273.521c-1,-63.055 -9.234,-81.022 -72.252,-92.396c0,0 -8.871,11.304 -29.547,11.304c-0.855,0 -1.684,-0.026 -2.5,-0.063c13.137,5.923 25.088,14.17 33.889,26.238c15.215,20.863 18.713,48.889 19.435,90.062c42.397,-8.378 51.086,-25.873 51.086,-25.873c0,-2.28 0,-3.844 0.004,-4.913C388.209,278.256 388.174,277.582 388.111,273.521z"/>
<path android:fillColor="#ff6601" android:pathData="M101.912,176.097c8.873,0 17.236,-2.617 24.621,-7.226c-10.74,-17.007 -16.572,-37.547 -16.572,-59.061c0,-19.002 1.457,-42.806 12.086,-62.403c-5.73,-1.555 -12.391,-2.388 -20.135,-2.388c-46.027,0 -53.957,29.343 -53.957,65.54C47.955,146.754 72.113,176.097 101.912,176.097z"/>
<path android:fillColor="#ff6601" android:pathData="M104.412,192.365c-0.814,0.037 -1.643,0.063 -2.5,0.063c-20.676,0 -29.547,-11.304 -29.547,-11.304c-63.016,11.374 -71.252,29.34 -72.25,92.396c-0.065,4.062 -0.098,4.735 -0.115,4.358c0.002,1.069 0.004,2.633 0.004,4.913c0,0 8.69,17.495 51.084,25.873c0.725,-41.172 4.221,-69.198 19.438,-90.062C79.326,206.536 91.275,198.288 104.412,192.365z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M3,13h8L11,3L3,3v10zM3,21h8v-6L3,15v6zM13,21h8L21,11h-8v10zM13,3v6h8L21,3h-8z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="59dp"
android:height="59dp"
android:viewportWidth="59"
android:viewportHeight="59">
<path
android:pathData="M24,4L24,13L0,13L0,43C0,45.21 5.37,47 12,47L12,54C12,56.21 17.37,58 24,58C29.8,58 34.64,56.63 35.76,54.8L35.76,54.79C32.7274,52.2345 30.984,48.4658 31,44.5C31.0055,41.5473 31.9706,38.6764 33.75,36.32C34.4062,35.4639 35.1615,34.6885 36,34.01C39.3617,31.2892 43.8224,30.3413 48,31.46L48,4L24,4Z"
android:strokeWidth="1"
android:fillColor="#F0C419"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M0,13a12,4 0,1 0,24 0a12,4 0,1 0,-24 0z"
android:strokeWidth="1"
android:fillColor="#F9EAB0"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M24,13L24,18C24,20.21 18.63,22 12,22C5.37,22 0,20.21 0,18L0,13C0,15.21 5.37,17 12,17C18.63,17 24,15.21 24,13Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M24,23L24,30C19.62,30 15.79,30.78 13.69,31.96L13.68,31.96C13.13,31.99 12.58,32 12,32C5.37,32 0,30.21 0,28L0,23C0,25.21 5.37,27 12,27C18.63,27 24,25.21 24,23Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M12,37L12,42C5.37,42 0,40.21 0,38L0,33C0,35.21 5.37,37 12,37Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M24,4a12,4 0,1 0,24 0a12,4 0,1 0,-24 0z"
android:strokeWidth="1"
android:fillColor="#F9EAB0"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M48,24L48,31.46C43.8224,30.3413 39.3617,31.2892 36,34.01L36,34C35.9907,33.6284 35.8529,33.2714 35.61,32.99C34.27,31.27 29.58,30 24,30L24,24C24,26.21 29.37,28 36,28C42.63,28 48,26.21 48,24Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M48,14L48,19C48,21.21 42.63,23 36,23C29.37,23 24,21.21 24,19L24,14C24,16.21 29.37,18 36,18C42.63,18 48,16.21 48,14Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M48,4L48,9C48,11.21 42.63,13 36,13C29.37,13 24,11.21 24,9L24,4C24,6.21 29.37,8 36,8C42.63,8 48,6.21 48,4Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M36,34L36,34.01C35.1615,34.6885 34.4062,35.4639 33.75,36.32C32.5588,36.8534 31.3059,37.2364 30.02,37.46L30,37.46C28.0214,37.8279 26.0125,38.0087 24,38C21.1268,38.0469 18.2634,37.6523 15.51,36.83L15.5,36.83C13.34,36.1 12,35.1 12,34C12,33.26 12.61,32.56 13.68,31.96L13.69,31.96C15.79,30.78 19.62,30 24,30C29.58,30 34.27,31.27 35.61,32.99C35.8529,33.2714 35.9907,33.6284 36,34Z"
android:strokeWidth="1"
android:fillColor="#F9EAB0"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M33.75,36.32C32.4399,38.0466 31.5652,40.0636 31.2,42.2C28.8404,42.7523 26.4233,43.0209 24,43C21.1268,43.0469 18.2634,42.6523 15.51,41.83L15.5,41.83C13.34,41.1 12,40.1 12,39L12,34C12,35.1 13.34,36.1 15.5,36.83L15.51,36.83C18.2634,37.6523 21.1268,38.0469 24,38C26.0125,38.0087 28.0214,37.8279 30,37.46L30.02,37.46C31.3059,37.2364 32.5588,36.8534 33.75,36.32Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M33.03,51.63C30.1213,52.6031 27.0664,53.0666 24,53C17.37,53 12,51.21 12,49L12,44C12,45.1 13.34,46.1 15.5,46.83L15.51,46.83C18.2634,47.6523 21.1268,48.0469 24,48C26.4445,48.0259 28.8829,47.7505 31.26,47.18C31.5831,48.7561 32.1824,50.2626 33.03,51.63Z"
android:strokeWidth="1"
android:fillColor="#F3D55B"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M58,44.5C57.9959,49.7594 54.94,54.5383 50.1676,56.7486C45.3952,58.9588 39.7738,58.1985 35.76,54.8L35.76,54.79C32.7274,52.2345 30.984,48.4658 31,44.5C31.0055,41.5473 31.9706,38.6764 33.75,36.32C34.4062,35.4639 35.1615,34.6885 36,34.01C40.0439,30.7326 45.6119,30.0721 50.3103,32.3124C55.0088,34.5528 58.0007,39.2947 58,44.5Z"
android:strokeWidth="1"
android:fillColor="#F0C419"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
<path
android:pathData="M44.5,59C41.0646,58.9961 37.7408,57.7792 35.115,55.564C35.082,55.536 35.051,55.506 35.021,55.475C33.9174,54.517 32.9617,53.4009 32.185,52.163C31.2722,50.6942 30.6272,49.0751 30.28,47.381C30.0945,46.4319 30.0007,45.4671 30,44.5C30.0063,41.3293 31.0426,38.2466 32.953,35.716C36.5277,31.0377 42.5703,28.9761 48.259,30.494C55.2889,32.3775 59.8334,39.1803 58.882,46.3957C57.9305,53.611 51.7778,59.0032 44.5,59ZM36.49,54.107C40.8436,57.76 47.109,58.0302 51.761,54.7656C56.4129,51.5011 58.2895,45.5172 56.3347,40.1808C54.38,34.8444 49.0823,31.4885 43.4223,32.0012C37.7624,32.5139 33.154,36.7672 32.19,42.368C32.0653,43.0719 32.0017,43.7852 32,44.5C32.0003,45.3351 32.081,46.1683 32.241,46.988C32.5408,48.4445 33.0957,49.8366 33.88,51.1C34.5692,52.1974 35.4213,53.1837 36.407,54.025C36.4364,54.0505 36.4642,54.0779 36.49,54.107Z"
android:strokeWidth="1"
android:fillColor="#B19046"
android:fillType="nonZero"
android:strokeColor="#00000000"/>
<path
android:pathData="M44.5,43.5C42.6,43.5 41,42.47 41,41.25C41,40.14 42.331,39.196 44,39.034L44,40C44,40.5523 44.4477,41 45,41C45.5523,41 46,40.5523 46,40L46,39.234C47.168,39.603 48,40.374 48,41.25C48,41.8023 48.4477,42.25 49,42.25C49.5523,42.25 50,41.8023 50,41.25C50,39.273 48.327,37.669 46,37.174L46,36C46,35.4477 45.5523,35 45,35C44.4477,35 44,35.4477 44,36L44,37.038C41.163,37.23 39,39 39,41.25C39,43.633 41.416,45.5 44.5,45.5C46.4,45.5 48,46.53 48,47.75C48,48.626 47.168,49.397 46,49.766L46,49C46,48.4477 45.5523,48 45,48C44.4477,48 44,48.4477 44,49L44,49.966C42.331,49.804 41,48.86 41,47.75C41,47.1977 40.5523,46.75 40,46.75C39.4477,46.75 39,47.1977 39,47.75C39,50 41.163,51.77 44,51.962L44,53C44,53.5523 44.4477,54 45,54C45.5523,54 46,53.5523 46,53L46,51.826C48.327,51.331 50,49.726 50,47.75C50,45.367 47.584,43.5 44.5,43.5Z"
android:strokeWidth="1"
android:fillColor="#F9EAB0"
android:fillType="evenOdd"
android:strokeColor="#00000000"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M10,20v-6h4v6h5v-8h3L12,3 2,12h3v8z" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>
<vector android:height="24dp" android:tint="#FFFFFF"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M10.09,15.59L11.5,17l5,-5 -5,-5 -1.41,1.41L12.67,11H3v2h9.67l-2.58,2.59zM19,3H5c-1.11,0 -2,0.9 -2,2v4h2V5h14v14H5v-4H3v4c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M12,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.89,2 2,2zM18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32L13.5,4c0,-0.83 -0.67,-1.5 -1.5,-1.5s-1.5,0.67 -1.5,1.5v0.68C7.63,5.36 6,7.92 6,11v5l-2,2v1h16v-1l-2,-2z" />
</vector>
<vector android:height="30dp" android:viewportHeight="405.333"
android:viewportWidth="405.333" android:width="30dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#009688" android:pathData="M373.333,266.88c-24.696,0.048 -49.241,-3.856 -72.704,-11.563c-10.971,-3.831 -23.161,-1.25 -31.637,6.699l-46.037,34.731c-49.441,-24.823 -89.557,-64.931 -114.389,-114.368l33.813,-44.928c8.537,-8.543 11.59,-21.136 7.915,-32.64C142.558,81.316 138.633,56.735 138.667,32c0,-17.673 -14.327,-32 -32,-32H32C14.327,0 0,14.327 0,32c0.235,206.089 167.244,373.098 373.333,373.333c17.673,0 32,-14.327 32,-32V298.88C405.333,281.207 391.006,266.88 373.333,266.88z"/>
</vector>
<vector android:height="36dp" android:viewportHeight="512"
android:viewportWidth="512" android:width="36dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF3636" android:pathData="M441.443,133.2c-17.999,-58.2 -65.4,-105.601 -123.6,-123.6c-20.4,-6.301 -41.4,-9.6 -61.8,-9.6c-41.7,0 -81.899,12.9 -115.499,38.101C90.742,74.7 61.043,133.2 61.043,195c0,42.599 13.5,83.101 39,117.001l156,199.999l156,-199.999C450.142,261 460.943,195.901 441.443,133.2zM256.043,300c-57.9,0 -105,-47.1 -105,-105s47.1,-105 105,-105s105,47.1 105,105S313.943,300 256.043,300z"/>
<path android:fillColor="#F40000" android:pathData="M412.043,312.001L256.043,512V300c57.9,0 105,-47.1 105,-105s-47.1,-105 -105,-105V0c20.4,0 41.4,3.3 61.8,9.6c58.2,17.999 105.601,65.4 123.6,123.6C460.943,195.901 450.142,261 412.043,312.001z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="511.999dp"
android:height="511.999dp"
android:viewportWidth="511.999"
android:viewportHeight="511.999">
<path
android:pathData="M255.999,255.999m-255.999,0a255.999,255.999 0,1 1,511.998 0a255.999,255.999 0,1 1,-511.998 0"
android:fillColor="#34ABE0"/>
<path
android:pathData="M471.252,88.659v305.966c-17.847,27.669 -40.897,51.681 -67.751,70.635c-7.471,5.277 -15.235,10.167 -23.27,14.629c-36.78,20.449 -79.151,32.11 -124.228,32.11s-87.447,-11.661 -124.228,-32.11c-8.035,-4.462 -15.799,-9.352 -23.27,-14.629c-26.854,-18.954 -49.904,-42.966 -67.751,-70.635V22.8c0,-12.591 10.209,-22.8 22.8,-22.8h319.038L471.252,88.659z"
android:fillColor="#F9EED7"/>
<path
android:pathData="M102.621,113.347c0,-2.894 2.662,-5.441 6.713,-5.441h23.962c15.28,0 27.318,7.176 27.318,26.623v0.579c0,19.447 -12.501,26.855 -28.475,26.855h-11.459v25.002c0,3.704 -4.515,5.556 -9.029,5.556c-4.515,0 -9.029,-1.852 -9.029,-5.556V113.347zM120.679,123.649v24.423h11.459c6.483,0 10.418,-3.704 10.418,-11.575v-1.273c0,-7.871 -3.936,-11.575 -10.418,-11.575L120.679,123.649L120.679,123.649z"
android:fillColor="#FF525D"/>
<path
android:pathData="M174.275,113.347c0,-2.894 2.199,-5.441 5.556,-5.441h23.962c15.858,0 28.476,5.904 28.476,24.771c0,12.964 -5.904,20.372 -14.006,23.498l14.122,25.581c0.463,0.695 0.578,1.505 0.578,2.084c0,4.514 -6.019,9.376 -11.343,9.376c-2.315,0 -4.515,-0.926 -5.788,-3.357l-15.858,-30.79h-7.639v27.897c0,3.704 -4.515,5.556 -9.029,5.556s-9.029,-1.852 -9.029,-5.556L174.275,113.347L174.275,113.347zM192.333,123.649v21.53h11.459c6.483,0 10.418,-2.662 10.418,-10.766c0,-8.102 -3.936,-10.766 -10.418,-10.766h-11.459V123.649z"
android:fillColor="#FF525D"/>
<path
android:pathData="M247.666,113.347c0,-3.82 4.515,-5.441 9.029,-5.441c4.514,0 9.029,1.621 9.029,5.441v73.619c0,3.704 -4.515,5.556 -9.029,5.556c-4.515,0 -9.029,-1.852 -9.029,-5.556V113.347z"
android:fillColor="#FF525D"/>
<path
android:pathData="M311.563,123.649c-6.597,0 -10.418,3.704 -10.418,11.575v30.675c0,7.871 3.819,11.575 10.534,11.575c9.26,0 9.839,-7.061 10.187,-11.575c0.347,-4.283 4.283,-5.441 8.913,-5.441c6.251,0 9.144,1.621 9.144,8.566c0,15.395 -12.501,24.192 -29.054,24.192c-15.164,0 -27.781,-7.408 -27.781,-27.318v-30.675c0,-19.909 12.617,-27.318 27.781,-27.318c16.553,0 29.054,8.334 29.054,23.035c0,6.945 -2.893,8.566 -9.029,8.566c-4.862,0 -8.797,-1.274 -9.029,-5.44C321.75,131.057 321.402,123.649 311.563,123.649z"
android:fillColor="#FF525D"/>
<path
android:pathData="M372.916,143.211h17.363c3.472,0 5.441,3.357 5.441,7.061c0,3.125 -1.621,6.829 -5.441,6.829h-17.363v19.679h31.022c3.472,0 5.441,3.704 5.441,7.987c0,3.704 -1.621,7.755 -5.441,7.755H362.73c-3.936,0 -7.871,-1.852 -7.871,-5.556v-73.503c0,-3.704 3.936,-5.556 7.871,-5.556h41.208c3.82,0 5.441,4.051 5.441,7.755c0,4.283 -1.969,7.987 -5.441,7.987h-31.022V143.211z"
android:fillColor="#FF525D"/>
<path
android:pathData="M410.121,296.824H199.055c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h211.066c4.04,0 7.314,3.275 7.314,7.314l0,0C417.435,293.549 414.16,296.824 410.121,296.824z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M410.121,418.867H199.055c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h211.066c4.04,0 7.314,3.275 7.314,7.314l0,0C417.435,415.593 414.16,418.867 410.121,418.867z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M410.121,235.802H199.055c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h211.066c4.04,0 7.314,3.275 7.314,7.314l0,0C417.435,232.527 414.16,235.802 410.121,235.802z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M410.121,357.845H199.055c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h211.066c4.04,0 7.314,3.275 7.314,7.314l0,0C417.435,354.571 414.16,357.845 410.121,357.845z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M403.501,465.261c-7.471,5.277 -15.235,10.167 -23.27,14.629H199.057c-4.044,0 -7.314,-3.271 -7.314,-7.314c0,-2.027 0.815,-3.845 2.142,-5.172c1.327,-1.327 3.145,-2.142 5.172,-2.142H403.501z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M154.124,296.824h-52.245c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h52.245c4.04,0 7.314,3.275 7.314,7.314l0,0C161.439,293.549 158.164,296.824 154.124,296.824z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M154.124,418.867h-52.245c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h52.245c4.04,0 7.314,3.275 7.314,7.314l0,0C161.439,415.593 158.164,418.867 154.124,418.867z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M154.124,235.802h-52.245c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h52.245c4.04,0 7.314,3.275 7.314,7.314l0,0C161.439,232.527 158.164,235.802 154.124,235.802z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M154.124,357.845h-52.245c-4.04,0 -7.314,-3.275 -7.314,-7.314l0,0c0,-4.04 3.275,-7.314 7.314,-7.314h52.245c4.04,0 7.314,3.275 7.314,7.314l0,0C161.439,354.571 158.164,357.845 154.124,357.845z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M161.441,472.575c0,2.027 -0.815,3.845 -2.142,5.172c-1.327,1.327 -3.156,2.142 -5.172,2.142h-22.35c-8.035,-4.462 -15.799,-9.352 -23.27,-14.629h45.62C158.16,465.261 161.441,468.531 161.441,472.575z"
android:fillColor="#5C5E70"/>
<path
android:pathData="M416.918,82.446l54.331,34.928l0.003,-28.715z"
android:fillColor="#E8DBC4"/>
<path
android:pathData="M382.593,67.006V0l88.659,88.659h-67.006C392.287,88.659 382.593,78.965 382.593,67.006z"
android:fillColor="#FCF8F2"/>
</vector>
<vector android:height="24dp" android:tint="#393939"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M4,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM8,13h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM8,17h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,8c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,7c-0.55,0 -1,0.45 -1,1zM4,13c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,17c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM4,9c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1 -1,0.45 -1,1 0.45,1 1,1zM8,13h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,11c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM8,17h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,15c-0.55,0 -1,0.45 -1,1s0.45,1 1,1zM7,8c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1s-0.45,-1 -1,-1L8,7c-0.55,0 -1,0.45 -1,1z"/>
</vector>
<vector android:height="36dp" android:viewportHeight="53"
android:viewportWidth="53" android:width="36dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#E7ECED" android:pathData="M18.613,41.552l-7.907,4.313c-0.464,0.253 -0.881,0.564 -1.269,0.903C14.047,50.655 19.998,53 26.5,53c6.454,0 12.367,-2.31 16.964,-6.144c-0.424,-0.358 -0.884,-0.68 -1.394,-0.934l-8.467,-4.233c-1.094,-0.547 -1.785,-1.665 -1.785,-2.888v-3.322c0.238,-0.271 0.51,-0.619 0.801,-1.03c1.154,-1.63 2.027,-3.423 2.632,-5.304c1.086,-0.335 1.886,-1.338 1.886,-2.53v-3.546c0,-0.78 -0.347,-1.477 -0.886,-1.965v-5.126c0,0 1.053,-7.977 -9.75,-7.977s-9.75,7.977 -9.75,7.977v5.126c-0.54,0.488 -0.886,1.185 -0.886,1.965v3.546c0,0.934 0.491,1.756 1.226,2.231c0.886,3.857 3.206,6.633 3.206,6.633v3.24C20.296,39.899 19.65,40.986 18.613,41.552z"/>
<path android:fillColor="#556080" android:pathData="M26.953,0.004C12.32,-0.246 0.254,11.414 0.004,26.047C-0.138,34.344 3.56,41.801 9.448,46.76c0.385,-0.336 0.798,-0.644 1.257,-0.894l7.907,-4.313c1.037,-0.566 1.683,-1.653 1.683,-2.835v-3.24c0,0 -2.321,-2.776 -3.206,-6.633c-0.734,-0.475 -1.226,-1.296 -1.226,-2.231v-3.546c0,-0.78 0.347,-1.477 0.886,-1.965v-5.126c0,0 -1.053,-7.977 9.75,-7.977s9.75,7.977 9.75,7.977v5.126c0.54,0.488 0.886,1.185 0.886,1.965v3.546c0,1.192 -0.8,2.195 -1.886,2.53c-0.605,1.881 -1.478,3.674 -2.632,5.304c-0.291,0.411 -0.563,0.759 -0.801,1.03V38.8c0,1.223 0.691,2.342 1.785,2.888l8.467,4.233c0.508,0.254 0.967,0.575 1.39,0.932c5.71,-4.762 9.399,-11.882 9.536,-19.9C53.246,12.32 41.587,0.254 26.953,0.004z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/iv_header"
android:layout_width="match_parent"
android:layout_height="300dp"
android:src="@drawable/bg_top_header"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.jachdev.commonlibs.widget.CustomTextView
android:id="@+id/tv_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="end"
android:maxLines="2"
android:padding="@dimen/medium"
android:text="@string/app_name"
android:textAlignment="center"
android:textColor="@color/colorAccent"
android:textSize="35sp"
app:fontType="@string/font_header"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/iv_header"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/iv_header" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/navigation_home"
android:icon="@drawable/ic_home_black_24dp"
android:title="@string/title_home" />
<item
android:id="@+id/navigation_dashboard"
android:icon="@drawable/ic_dashboard_black_24dp"
android:title="@string/title_dashboard" />
<item
android:id="@+id/navigation_notifications"
android:icon="@drawable/ic_notifications_black_24dp"
android:title="@string/title_notifications" />
</menu>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/vendor_navigation"
app:startDestination="@+id/navigation_home">
<fragment
android:id="@+id/navigation_home"
android:name="com.jachdev.consumerprotection.ui.home.HomeFragment"
android:label="@string/title_home"
tools:layout="@layout/fragment_home" />
<fragment
android:id="@+id/navigation_dashboard"
android:name="com.jachdev.consumerprotection.ui.dashboard.DashboardFragment"
android:label="@string/title_dashboard"
tools:layout="@layout/fragment_dashboard" />
<fragment
android:id="@+id/navigation_notifications"
android:name="com.jachdev.consumerprotection.ui.notifications.NotificationsFragment"
android:label="@string/title_notifications"
tools:layout="@layout/fragment_notifications" />
</navigation>
\ No newline at end of file
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.ConsumerProtection" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_200</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/black</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_200</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Fullscreen" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowBackground">@drawable/bg_splash</item>
<!-- <item name="android:windowLayoutInDisplayCutoutMode">always</item>-->
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
<style name="ThemeAuthentication" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowBackground">@color/whiteTwo</item>
<!-- <item name="android:windowLayoutInDisplayCutoutMode">always</item>-->
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="HeaderView">
<attr name="text" format="string" />
</declare-styleable>
<declare-styleable name="CircleImageView">
<attr name="civ_border_width" format="dimension" />
<attr name="civ_border_color" format="color" />
<attr name="civ_border_overlay" format="boolean" />
<attr name="civ_circle_background_color" format="color" />
</declare-styleable>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#0288D1</color>
<color name="purple_200">#40C4FF</color>
<color name="purple_500">#00B0FF</color>
<color name="purple_700">#0091EA</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="colorPrimaryDark">#00507C</color>
<color name="colorAccent">#FFFFFF</color>
<color name="colorAccentVariant">#00B8D4</color>
<color name="whiteTwo">#FFFFFF</color>
<color name="colorPrimaryText">@color/colorPrimary</color>
<color name="colorPrimaryTextAccent">@color/colorAccent</color>
<color name="colorPrimaryTextHint">#6b6c72</color>
<color name="transparent">#00FFFFFF</color>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="medium">16dp</dimen>
<dimen name="stroke">1dp</dimen>
<dimen name="default_radius">4dp</dimen>
<dimen name="font_size_medium">16sp</dimen>
<dimen name="low">8dp</dimen>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="default_elevation">1dp</dimen>
<dimen name="margin_large">32dp</dimen>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
</resources>
\ No newline at end of file
<resources>
<string name="app_name">Mobile Health Monitor</string>
<string name="font_header">fonts/Montserrat-Bold.ttf</string>
<string name="font_Sub_header">fonts/Montserrat-Medium.ttf</string>
<string name="font_para">fonts/Montserrat-Regular.ttf</string>
<string name="font_para_light">fonts/Montserrat-Light.ttf</string>
<string name="font_para_extra_light">fonts/Montserrat-ExtraLight.ttf</string>
<string name="login">Login</string>
<string name="email">Email</string>
<string name="password">Password</string>
<string name="don_t_you_have_an_account">Don\'t you have an account?</string>
<string name="sign_up">Sign Up</string>
<string name="sign_in">Sign In</string>
<string name="name">Name</string>
<string name="confirm_password">Confirm Password</string>
<string name="sign_up_as">Sign Up as: </string>
<string name="consumer">Consumer</string>
<string name="title_activity_home">MainActivity</string>
<string name="title_home">Home</string>
<string name="title_dashboard">Dashboard</string>
<string name="title_notifications">Notifications</string>
<string name="phone_number">Phone Number</string>
<string name="alert">Alert</string>
<string name="ok">Ok</string>
<string name="add_organization">Add Organization</string>
<string name="hello">Hello</string>
<string name="organization_name">Organization Name</string>
<string name="description">Description</string>
<string name="add_logo">Add Logo</string>
<string name="organization_type">Organization Type</string>
<string name="from_gallery">Choose from Gallery</string>
<string name="from_camera">Choose from Camera</string>
<string name="error_please_insert_a_valid_image">Please insert a valid image.</string>
<string name="need_permissions">Need Permissions</string>
<string name="need_permissions_to_use_this_feature">This app needs permission to use this feature. You can grant them in app settings.</string>
<string name="goto_settings">GOTO SETTINGS</string>
<string name="cancel">Cancel</string>
<string name="submit">Submit</string>
<string name="view_organization">View Organization</string>
<string name="shop_details">Shop Details</string>
<string name="add_shop">Add Shop</string>
<string name="please_add_shop_details">Please add shop details :</string>
<string name="shop_name">Shop name</string>
<string name="shop_address">Shop Address</string>
<string name="error_add_a_location">Please add a location.</string>
<string name="your_location">Your location</string>
<string name="image_description" />
<string name="done">Done</string>
<string name="loading">Loading…</string>
<string name="address">Address</string>
<string name="error_no_address">Please select your location.</string>
<string name="unable_to_get_your_location">Unable to get your location.</string>
<string name="allow_location_permissions">Allow app to access this device\'s location?</string>
<string name="title_activity_search_location">Search Location</string>
<string name="successfully_added">Successfully Added</string>
<string name="nearest_stocks">Nearest Stocks</string>
<string name="nearest_shops">Nearest Shops</string>
<string name="import_prediction">Import Prediction</string>
<string name="price_prediction">Price Prediction</string>
<string name="complaints">Complaints</string>
<string name="contact_us">Contact Us</string>
<string name="category_type">Category - %s</string>
<string name="sub_category_type">Sub Category - %s</string>
<string name="title">Title</string>
<string name="Tharushaa_sandaruwan">Tharushaa Sandaruwan</string>
<string name="uditha_kariyawasam">Uditha Kariyawasam</string>
<string name="nelushi_nitara">Nelushi Nitara</string>
<string name="email_us">Email Us</string>
<string name="web">Web</string>
<string name="title_activity_maps">Map</string>
<string name="seasonal_variation">Seasonal variation</string>
<string name="sales_prediction">Sales Prediction</string>
<string name="min_max_ratio_10_100">Min/Max Ratio: %s ~ %s</string>
<string name="_947">+947########</string>
<string name="enter_6_digit_pin">Enter 6 digit pin</string>
<string name="weight">Weight (kg)</string>
<string name="height">Height (m)</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="EditText">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">45dp</item>
<item name="android:paddingLeft">@dimen/medium</item>
<item name="android:paddingRight">@dimen/medium</item>
<item name="android:maxLines">1</item>
<item name="android:imeOptions">actionNext</item>
<item name="android:textColor">@color/colorPrimaryText</item>
<item name="android:textColorHint">@color/colorPrimaryTextHint</item>
<item name="android:textSize">@dimen/font_size_medium</item>
<item name="android:background">@drawable/bg_edit_text</item>
</style>
<style name="TextView">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">@color/colorPrimaryText</item>
<item name="android:textSize">@dimen/font_size_medium</item>
</style>
<style name="Button">
<item name="android:background">@drawable/bg_button</item>
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">45dp</item>
<item name="android:textColor">@color/colorPrimaryTextAccent</item>
</style>
<style name="EditTextMultiline" parent="EditText">
<item name="android:layout_height">wrap_content</item>
<item name="android:gravity">start|top</item>
<item name="android:layout_marginTop">@dimen/low</item>
<item name="android:inputType">textMultiLine</item>
<item name="android:paddingTop">4dp</item>
<item name="android:paddingBottom">4dp</item>
<item name="android:paddingLeft">@dimen/medium</item>
<item name="android:paddingRight">@dimen/medium</item>
<item name="android:lines">4</item>
<item name="android:maxLines">4</item>
</style>
<style name="ImageView">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:background">@null</item>
<item name="android:contentDescription">@string/image_description</item>
</style>
</resources>
\ No newline at end of file
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.ConsumerProtection" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryVariant">@color/colorPrimaryDark</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/colorAccent</item>
<item name="colorSecondaryVariant">@color/colorAccentVariant</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
<item name="android:windowBackground">@color/whiteTwo</item>
</style>
<style name="Fullscreen" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowBackground">@drawable/bg_splash</item>
</style>
<style name="ThemeAuthentication" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowBackground">@color/whiteTwo</item>
</style>
</resources>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment