Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2026-03-19 19:05:31 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8b0e3816e431665bd39c55f26c416f922275f820
8b0e3816
1 parent
302c79ed
questionnaire part2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
76 additions
and
0 deletions
warply_android_sdk/src/main/java/ly/warp/sdk/activities/HomeActivity.java
warply_android_sdk/src/main/res/drawable/shape_popup_option.xml
warply_android_sdk/src/main/res/layout/item_questionnaire_list_custom.xml
warply_android_sdk/src/main/res/layout/item_questionnaire_list_header.xml
warply_android_sdk/src/main/res/layout/item_questionnaire_list_option.xml
warply_android_sdk/src/main/java/ly/warp/sdk/activities/HomeActivity.java
View file @
8b0e381
This diff is collapsed. Click to expand it.
warply_android_sdk/src/main/res/drawable/shape_popup_option.xml
0 → 100644
View file @
8b0e381
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:shape=
"rectangle"
>
<corners
android:radius=
"14dp"
/>
<solid
android:color=
"@color/white"
/>
</shape>
\ No newline at end of file
warply_android_sdk/src/main/res/layout/item_questionnaire_list_custom.xml
0 → 100644
View file @
8b0e381
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/ll_option_container"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:background=
"@color/white"
android:gravity=
"center_vertical"
android:orientation=
"vertical"
android:layout_marginTop=
"40dp"
>
<TextView
android:id=
"@+id/tv_dropdown_option_header"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:includeFontPadding=
"false"
android:layout_marginBottom=
"12dp"
android:paddingHorizontal=
"16dp"
android:textColor=
"@color/black"
android:textSize=
"15sp"
tools:text=
"Option Title"
/>
</LinearLayout>
\ No newline at end of file
warply_android_sdk/src/main/res/layout/item_questionnaire_list_header.xml
0 → 100644
View file @
8b0e381
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/ll_option_container"
android:layout_width=
"match_parent"
android:layout_height=
"55dp"
android:background=
"@drawable/shape_questionnaire_option_unselected"
android:gravity=
"center_vertical"
android:orientation=
"horizontal"
android:paddingHorizontal=
"16dp"
>
<TextView
android:id=
"@+id/tv_dropdown_option_header"
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_weight=
"1"
android:includeFontPadding=
"false"
tools:text=
"Option Title"
android:textColor=
"@color/black"
android:textSize=
"15sp"
/>
<ImageView
android:id=
"@+id/iv_terms_arrow"
android:layout_width=
"10dp"
android:layout_height=
"10dp"
android:src=
"@drawable/ic_arrow_down"
/>
</LinearLayout>
\ No newline at end of file
warply_android_sdk/src/main/res/layout/item_questionnaire_list_option.xml
0 → 100644
View file @
8b0e381
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/ll_option_container"
android:layout_width=
"match_parent"
android:layout_height=
"55dp"
android:layout_marginBottom=
"8dp"
android:background=
"@color/white"
android:gravity=
"center"
android:orientation=
"horizontal"
>
<TextView
android:id=
"@+id/tv_dropdown_option_title"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:includeFontPadding=
"false"
tools:text=
"Option Title"
android:textColor=
"@color/black"
android:textSize=
"15sp"
/>
</LinearLayout>
\ No newline at end of file
Please
register
or
login
to post a comment