Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sdc gallery app, implement single choice workflow. #1008

Merged
merged 38 commits into from
Jan 27, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
b797bc4
Sdc gallery app landing page
santosh-pingle Dec 28, 2021
94df10b
Rename file name.
santosh-pingle Dec 28, 2021
2b3030c
Merge branch 'master' into sp/988-landing-page
santosh-pingle Dec 28, 2021
c129e57
Update components and layouts vector icons.
santosh-pingle Jan 3, 2022
b1525b5
Merge branch 'master' into sp/988-landing-page
santosh-pingle Jan 3, 2022
c67b949
Sdc gallery app single choice workflow.
santosh-pingle Jan 4, 2022
05f8a44
Update it as boolean choice.
santosh-pingle Jan 5, 2022
45d59cb
Address review comments.
santosh-pingle Jan 5, 2022
52121cf
Boolean choice component icon.
santosh-pingle Jan 5, 2022
6efe4b9
Merge branch 'sp/988-landing-page' into sp/992-single-choice
santosh-pingle Jan 5, 2022
d76da21
Spotless apply
santosh-pingle Jan 5, 2022
2e68631
Merge branch 'master' into sp/988-landing-page
santosh-pingle Jan 5, 2022
0dfebad
Build failures
santosh-pingle Jan 5, 2022
9ca677d
Delete gallery drawables.
santosh-pingle Jan 5, 2022
98bba50
fix package name in nav graph
santosh-pingle Jan 5, 2022
2b9e33f
Merge branch 'sp/988-landing-page' into sp/992-single-choice
santosh-pingle Jan 5, 2022
4357509
Spotless apply.
santosh-pingle Jan 5, 2022
f697147
Delete gallery color resource
santosh-pingle Jan 5, 2022
83c3c45
Merge branch 'master' into sp/988-landing-page
santosh-pingle Jan 6, 2022
0adae63
Merge branch 'sp/988-landing-page' into sp/992-single-choice
santosh-pingle Jan 7, 2022
96e30a6
Merge branch 'master' into sp/988-landing-page
santosh-pingle Jan 7, 2022
b050ce4
Merge branch 'sp/988-landing-page' into sp/992-single-choice
santosh-pingle Jan 7, 2022
9931045
Single choice workflow.
santosh-pingle Jan 7, 2022
3664435
theme attributes for color value.
santosh-pingle Jan 10, 2022
2384a9a
bottom view margin
santosh-pingle Jan 10, 2022
38be418
Merge branch 'master' into sp/988-landing-page
santosh-pingle Jan 10, 2022
68486e1
Merge branch 'sp/988-landing-page' into sp/992-single-choice
santosh-pingle Jan 10, 2022
6717f54
Merge branch 'sp/992-single-choice' into sp/issue-1006-single-choice
santosh-pingle Jan 10, 2022
c86efe3
textcolor on checked state.
santosh-pingle Jan 10, 2022
177935f
Merge branch 'master' into sp/992-single-choice
santosh-pingle Jan 13, 2022
1dc445a
Address review comments.
santosh-pingle Jan 25, 2022
85c1659
Merge branch 'master' into sp/992-single-choice
santosh-pingle Jan 25, 2022
33575d7
Merge branch 'sp/992-single-choice' into sp/issue-1006-single-choice
santosh-pingle Jan 25, 2022
f738942
Merge branch 'master' into sp/issue-1006-single-choice
santosh-pingle Jan 25, 2022
b834270
Remove unwanted file.
santosh-pingle Jan 25, 2022
da1a178
Delete unwanted file.
santosh-pingle Jan 25, 2022
cdbb5c4
Add filename field to the component enum.
santosh-pingle Jan 27, 2022
c76066c
Merge branch 'master' into sp/issue-1006-single-choice
santosh-pingle Jan 27, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update components and layouts vector icons.
  • Loading branch information
santosh-pingle committed Jan 3, 2022
commit c129e572ebe7607ca2112e47a922e4df20da63e6
Original file line number Diff line number Diff line change
Expand Up @@ -35,26 +35,26 @@ class ComponentsLayoutsViewModel(application: Application, private val state: Sa

// TODO update components icons
enum class Components(@DrawableRes val iconId: Int, @StringRes val textId: Int) {
MULTIPLE_CHOICE(R.drawable.ic_layout_icon, R.string.multiple_choice),
SINGLE_CHOICE(R.drawable.ic_components_icon, R.string.single_choice),
OPEN_CHOICE(R.drawable.ic_layout_icon, R.string.open_choice),
TEXT_FIELD(R.drawable.ic_components_icon, R.string.text_field),
DATE_PICKER(R.drawable.ic_layout_icon, R.string.date_picker),
TIME_PICKER(R.drawable.ic_components_icon, R.string.time_picker),
MODAL(R.drawable.ic_layout_icon, R.string.modal),
SLIDER(R.drawable.ic_components_icon, R.string.slider),
DROPDOWN(R.drawable.ic_layout_icon, R.string.dropdown),
IMAGE(R.drawable.ic_components_icon, R.string.image),
DATE_OF_BIRTH(R.drawable.ic_layout_icon, R.string.date_of_Birth),
DATE_RANGE_PICKER(R.drawable.ic_components_icon, R.string.date_range_picker),
UNIT_OPTIONS(R.drawable.ic_components_icon, R.string.unit_options),
MULTIPLE_CHOICE(R.drawable.ic_multiplechoice, R.string.multiple_choice),
SINGLE_CHOICE(R.drawable.ic_singlechoice, R.string.single_choice),
OPEN_CHOICE(R.drawable.ic_openchoice, R.string.open_choice),
TEXT_FIELD(R.drawable.ic_textfield, R.string.text_field),
DATE_PICKER(R.drawable.ic_datepicker, R.string.date_picker),
TIME_PICKER(R.drawable.ic_timepicker, R.string.time_picker),
MODAL(R.drawable.ic_modal, R.string.modal),
SLIDER(R.drawable.ic_slider, R.string.slider),
DROPDOWN(R.drawable.ic_group_1278, R.string.dropdown),
IMAGE(R.drawable.ic_image, R.string.image),
DATE_OF_BIRTH(R.drawable.ic_dateofbirth, R.string.date_of_Birth),
DATE_RANGE_PICKER(R.drawable.ic_rangepicker, R.string.date_range_picker),
UNIT_OPTIONS(R.drawable.ic_unitoptions, R.string.unit_options),
}

// TODO update layouts icons
enum class SdcLayouts(@DrawableRes val iconId: Int, @StringRes val textId: Int) {
DEFAULT(R.drawable.ic_layout_icon, R.string.default_text),
PAGINATED(R.drawable.ic_components_icon, R.string.paginated),
REVIEW(R.drawable.ic_layout_icon, R.string.review),
READ_ONLY(R.drawable.ic_components_icon, R.string.read_only),
DEFAULT(R.drawable.ic_defaultlayout, R.string.default_text),
PAGINATED(R.drawable.ic_paginatedlayout, R.string.paginated),
REVIEW(R.drawable.ic_reviewlayout, R.string.review),
READ_ONLY(R.drawable.ic_readonlylayout, R.string.read_only),
}
}
12 changes: 12 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_dateofbirth.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<path
android:pathData="M112.834,52.917H104.632C104.806,52.426 104.917,51.888 104.917,51.333C104.917,48.721 102.779,46.583 100.167,46.583C98.948,46.583 97.84,47.058 97,47.818C96.161,47.058 95.053,46.583 93.834,46.583C91.221,46.583 89.084,48.721 89.084,51.333C89.084,51.888 89.195,52.426 89.369,52.917H81.167V62.417H84.334V79.833H109.667V62.417H112.834V52.917ZM100.167,49.75C101.038,49.75 101.75,50.463 101.75,51.333C101.75,52.204 101.038,52.917 100.167,52.917C99.296,52.917 98.584,52.204 98.584,51.333C98.584,50.463 99.296,49.75 100.167,49.75ZM92.25,51.333C92.25,50.463 92.963,49.75 93.834,49.75C94.704,49.75 95.417,50.463 95.417,51.333C95.417,52.204 94.704,52.917 93.834,52.917C92.963,52.917 92.25,52.204 92.25,51.333ZM84.334,56.083H95.417V59.25H84.334V56.083ZM87.5,62.417H95.417V76.667H87.5V62.417ZM106.5,76.667H98.584V62.417H106.5V76.667ZM109.667,59.25H98.584V56.083H109.667V59.25Z"
android:fillColor="#1A73E8"
/>
</vector>
138 changes: 138 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_datepicker.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<path
android:pathData="M58,28C58,26.895 58.895,26 60,26H97H134C135.105,26 136,26.895 136,28V102C136,103.105 135.105,104 134,104H60C58.895,104 58,103.105 58,102V28Z"
android:fillColor="#ffffff"
/>
<path
android:pathData="M65.95,53.65m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M65.95,64m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M65.95,74.35m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M65.95,84.7m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M76.3,53.65m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M76.3,64m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M76.3,74.35m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M76.3,84.7m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M86.65,53.65m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M86.65,64m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M86.65,74.35m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M86.65,84.7m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M97,43.3m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M97,53.65m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M97,64m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M97,74.35m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M97,84.7m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M107.35,43.3m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M107.35,53.65m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M107.35,64m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M107.35,74.35m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M107.35,84.7m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M117.7,43.3m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M117.5,53.5m-2.5,0a2.5,2.5 0,1 1,5 0a2.5,2.5 0,1 1,-5 0"
android:fillColor="#1A73E8"
/>
<path
android:pathData="M117.5,53.5m-3.25,0a3.25,3.25 0,1 1,6.5 0a3.25,3.25 0,1 1,-6.5 0"
android:strokeWidth="0.5"
android:fillColor="#00000000"
android:strokeColor="#1A73E8"
/>
<path
android:pathData="M117.7,64m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M117.7,74.35m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M128.05,43.3m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M128.05,53.65m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M128.05,64m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M128.05,74.35m-2.3,0a2.3,2.3 0,1 1,4.6 0a2.3,2.3 0,1 1,-4.6 0"
android:fillColor="#D2E3FC"
/>
</vector>
48 changes: 48 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_defaultlayout.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<path
android:pathData="M55,27C55,25.895 55.895,25 57,25H94H131C132.105,25 133,25.895 133,27V101C133,102.105 132.105,103 131,103H57C55.895,103 55,102.105 55,101V27Z"
android:fillColor="#ffffff"
/>
<path
android:pathData="M73.314,45.75C73.314,45.198 73.762,44.75 74.314,44.75H123.314C123.867,44.75 124.314,45.198 124.314,45.75V45.75C124.314,46.303 123.867,46.75 123.314,46.75H74.314C73.762,46.75 73.314,46.303 73.314,45.75V45.75Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M73.314,66.751C73.314,66.198 73.762,65.751 74.314,65.751H123.314C123.867,65.751 124.314,66.198 124.314,66.751V66.751C124.314,67.303 123.867,67.751 123.314,67.751H74.314C73.762,67.751 73.314,67.303 73.314,66.751V66.751Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M73.314,87.938C73.314,87.386 73.762,86.938 74.314,86.938H123.314C123.867,86.938 124.314,87.386 124.314,87.938V87.938C124.314,88.491 123.867,88.938 123.314,88.938H74.314C73.762,88.938 73.314,88.491 73.314,87.938V87.938Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M73.314,40.75C73.314,40.198 73.762,39.75 74.314,39.75H112.314C112.867,39.75 113.314,40.198 113.314,40.75V40.75C113.314,41.303 112.867,41.75 112.314,41.75H74.314C73.762,41.75 73.314,41.303 73.314,40.75V40.75Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M73.314,61.75C73.314,61.198 73.762,60.75 74.314,60.75H112.314C112.867,60.75 113.314,61.198 113.314,61.75V61.75C113.314,62.303 112.867,62.75 112.314,62.75H74.314C73.762,62.75 73.314,62.303 73.314,61.75V61.75Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M73.314,82.938C73.314,82.386 73.762,81.938 74.314,81.938H112.314C112.867,81.938 113.314,82.386 113.314,82.938V82.938C113.314,83.491 112.867,83.938 112.314,83.938H74.314C73.762,83.938 73.314,83.491 73.314,82.938V82.938Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M65.852,46.75H67.055V39H65.857L63.816,40.45V41.632L65.761,40.241H65.852V46.75Z"
android:fillColor="#1A73E8"
/>
<path
android:pathData="M63.188,62.245H64.326C64.326,61.386 64.901,60.806 65.776,60.806C66.636,60.806 67.146,61.38 67.146,62.132C67.146,62.761 66.888,63.147 65.905,64.173L63.252,66.934V67.751H68.473V66.725H64.896V66.633L66.604,64.915C67.962,63.55 68.354,62.911 68.354,62.014C68.354,60.741 67.307,59.812 65.852,59.812C64.289,59.812 63.188,60.822 63.188,62.245Z"
android:fillColor="#1A73E8"
/>
<path
android:pathData="M64.831,85.431H65.798C66.808,85.431 67.431,85.947 67.431,86.774C67.431,87.58 66.765,88.117 65.814,88.117C64.874,88.117 64.225,87.628 64.155,86.865H63C63.064,88.229 64.192,89.127 65.831,89.127C67.447,89.127 68.666,88.16 68.666,86.838C68.666,85.775 68.001,85.087 66.969,84.932V84.84C67.78,84.615 68.366,83.997 68.371,83.063C68.377,81.961 67.469,81 65.868,81C64.235,81 63.226,81.94 63.145,83.256H64.284C64.354,82.445 64.918,81.988 65.798,81.988C66.669,81.988 67.184,82.531 67.184,83.213C67.184,83.96 66.604,84.486 65.766,84.486H64.831V85.431Z"
android:fillColor="#1A73E8"
/>
</vector>
23 changes: 23 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_group_1278.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<group>
<clip-path
android:pathData="M194,64C194,78.359 182.359,90 168,90L0,90L0,38L168,38C182.359,38 194,49.641 194,64V64Z"
/>
<path
android:pathData="M128,76C128,79.866 124.866,83 121,83L-1,83L-1,45L121,45C124.866,45 128,48.134 128,52L128,76Z"
android:strokeWidth="2"
android:fillColor="#ffffff"
android:strokeColor="#4285F4"
/>
</group>
<path
android:pathData="M101.5,61L109,68.5L116.5,61H101.5Z"
android:fillColor="#1A73E8"
/>
</vector>
25 changes: 25 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_image.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<path
android:pathData="M64.191,45.474C64.191,43.661 65.661,42.192 67.474,42.192H96.106H128.994C130.807,42.192 132.277,43.661 132.277,45.474V85C132.277,87.209 130.486,89 128.277,89H68.191C65.982,89 64.191,87.209 64.191,85V45.474Z"
android:fillColor="#1A73E8"
/>
<path
android:pathData="M61,42.282C61,40.469 62.469,39 64.282,39H95.043H125.803C127.616,39 129.085,40.469 129.085,42.282V81.809C129.085,84.018 127.294,85.809 125.085,85.809H65C62.791,85.809 61,84.018 61,81.809V42.282Z"
android:fillColor="#ffffff"
/>
<path
android:pathData="M91.054,73.979L104.617,58.149L122.703,79.425H68.447L82.011,62.404L91.054,73.979Z"
android:fillColor="#D2E3FC"
android:fillType="evenOdd"
/>
<path
android:pathData="M78.554,51.234m-4.787,0a4.787,4.787 0,1 1,9.574 0a4.787,4.787 0,1 1,-9.574 0"
android:fillColor="#D2E3FC"
/>
</vector>
36 changes: 36 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_modal.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<path
android:pathData="M58,27C58,25.895 58.895,25 60,25H97H134C135.105,25 136,25.895 136,27V101C136,102.105 135.105,103 134,103H60C58.895,103 58,102.105 58,101V27Z"
android:fillColor="#ffffff"
/>
<path
android:pathData="M68,45C68,43.895 68.895,43 70,43H124C125.105,43 126,43.895 126,45C126,46.105 125.105,47 124,47H70C68.895,47 68,46.105 68,45Z"
android:fillColor="#1A73E8"
/>
<path
android:pathData="M68,37C68,35.895 68.895,35 70,35H118C119.105,35 120,35.895 120,37C120,38.105 119.105,39 118,39H70C68.895,39 68,38.105 68,37Z"
android:fillColor="#1A73E8"
/>
<path
android:pathData="M68,58C68,56.895 68.895,56 70,56H111C112.105,56 113,56.895 113,58C113,59.105 112.105,60 111,60H70C68.895,60 68,59.105 68,58Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M68,66C68,64.895 68.895,64 70,64H118C119.105,64 120,64.895 120,66C120,67.105 119.105,68 118,68H70C68.895,68 68,67.105 68,66Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M68,74C68,72.895 68.895,72 70,72H104C105.105,72 106,72.895 106,74C106,75.105 105.105,76 104,76H70C68.895,76 68,75.105 68,74Z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M105,87C105,85.895 105.895,85 107,85H124C125.105,85 126,85.895 126,87V91C126,92.105 125.105,93 124,93H107C105.895,93 105,92.105 105,91V87Z"
android:fillColor="#1A73E8"
/>
</vector>
12 changes: 12 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_multiplechoice.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<path
android:pathData="M110.417,46.75H83.583C81.456,46.75 79.75,48.475 79.75,50.583V77.417C79.75,79.525 81.456,81.25 83.583,81.25H110.417C112.544,81.25 114.25,79.525 114.25,77.417V50.583C114.25,48.475 112.544,46.75 110.417,46.75ZM93.167,73.583L83.583,64L86.286,61.298L93.167,68.159L107.714,53.612L110.417,56.333L93.167,73.583Z"
android:fillColor="#1A73E8"
/>
</vector>
20 changes: 20 additions & 0 deletions datacapturegallery/src/main/res/drawable/ic_openchoice.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<vector
xmlns:android="http:https://schemas.android.com/apk/res/android"
android:width="194dp"
android:height="128dp"
android:viewportWidth="194"
android:viewportHeight="128"
>
<path
android:pathData="M97,64m-29,0a29,29 0,1 1,58 0a29,29 0,1 1,-58 0"
android:fillColor="#ffffff"
/>
<path
android:pathData="M96,35L98,35A28,28 0,0 1,126 63L126,65A28,28 0,0 1,98 93L96,93A28,28 0,0 1,68 65L68,63A28,28 0,0 1,96 35z"
android:fillColor="#D2E3FC"
/>
<path
android:pathData="M109,65.5H98.5V76H95.5V65.5H85V62.5H95.5V52H98.5V62.5H109V65.5Z"
android:fillColor="#1A73E8"
/>
</vector>
Loading