Showing
5 changed files
with
76 additions
and
0 deletions
This diff is collapsed. Click to expand it.
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + android:shape="rectangle"> | ||
| 4 | + <corners android:radius="14dp" /> | ||
| 5 | + | ||
| 6 | + <solid android:color="@color/white" /> | ||
| 7 | +</shape> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 4 | + android:id="@+id/ll_option_container" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="wrap_content" | ||
| 7 | + android:background="@color/white" | ||
| 8 | + android:gravity="center_vertical" | ||
| 9 | + android:orientation="vertical" | ||
| 10 | + android:layout_marginTop="40dp"> | ||
| 11 | + | ||
| 12 | + <TextView | ||
| 13 | + android:id="@+id/tv_dropdown_option_header" | ||
| 14 | + android:layout_width="wrap_content" | ||
| 15 | + android:layout_height="wrap_content" | ||
| 16 | + android:includeFontPadding="false" | ||
| 17 | + android:layout_marginBottom="12dp" | ||
| 18 | + android:paddingHorizontal="16dp" | ||
| 19 | + android:textColor="@color/black" | ||
| 20 | + android:textSize="15sp" | ||
| 21 | + tools:text="Option Title" /> | ||
| 22 | +</LinearLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 4 | + android:id="@+id/ll_option_container" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="55dp" | ||
| 7 | + android:background="@drawable/shape_questionnaire_option_unselected" | ||
| 8 | + android:gravity="center_vertical" | ||
| 9 | + android:orientation="horizontal" | ||
| 10 | + android:paddingHorizontal="16dp"> | ||
| 11 | + | ||
| 12 | + <TextView | ||
| 13 | + android:id="@+id/tv_dropdown_option_header" | ||
| 14 | + android:layout_width="0dp" | ||
| 15 | + android:layout_height="wrap_content" | ||
| 16 | + android:layout_weight="1" | ||
| 17 | + android:includeFontPadding="false" | ||
| 18 | + tools:text="Option Title" | ||
| 19 | + android:textColor="@color/black" | ||
| 20 | + android:textSize="15sp" /> | ||
| 21 | + | ||
| 22 | + <ImageView | ||
| 23 | + android:id="@+id/iv_terms_arrow" | ||
| 24 | + android:layout_width="10dp" | ||
| 25 | + android:layout_height="10dp" | ||
| 26 | + android:src="@drawable/ic_arrow_down" /> | ||
| 27 | +</LinearLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 4 | + android:id="@+id/ll_option_container" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="55dp" | ||
| 7 | + android:layout_marginBottom="8dp" | ||
| 8 | + android:background="@color/white" | ||
| 9 | + android:gravity="center" | ||
| 10 | + android:orientation="horizontal"> | ||
| 11 | + | ||
| 12 | + <TextView | ||
| 13 | + android:id="@+id/tv_dropdown_option_title" | ||
| 14 | + android:layout_width="wrap_content" | ||
| 15 | + android:layout_height="wrap_content" | ||
| 16 | + android:includeFontPadding="false" | ||
| 17 | + tools:text="Option Title" | ||
| 18 | + android:textColor="@color/black" | ||
| 19 | + android:textSize="15sp" /> | ||
| 20 | +</LinearLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment