• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    xmlns:app="http://schemas.android.com/apk/res-auto"
5    android:id="@+id/backgroundColorContainer"
6    android:layout_width="match_parent"
7    android:layout_height="wrap_content"
8    android:visibility="gone">
9    <LinearLayout
10        android:layout_width="match_parent"
11        android:layout_height="wrap_content"
12        android:layout_gravity="center_vertical"
13        android:background="@android:color/white"
14        android:gravity="center_vertical"
15        android:orientation="horizontal"
16        android:paddingBottom="16dp"
17        android:paddingTop="16dp">
18
19        <com.airbnb.lottie.samples.views.BackgroundColorView
20            android:id="@+id/backgroundButton1"
21            android:layout_width="0dp"
22            android:layout_height="24dp"
23            android:layout_marginLeft="16dp"
24            android:layout_weight="1"
25            android:background="@color/background_color1"/>
26
27        <com.airbnb.lottie.samples.views.BackgroundColorView
28            android:id="@+id/backgroundButton2"
29            android:layout_width="0dp"
30            android:layout_height="24dp"
31            android:layout_weight="1"
32            android:background="@color/background_color2"/>
33
34        <com.airbnb.lottie.samples.views.BackgroundColorView
35            android:id="@+id/backgroundButton3"
36            android:layout_width="0dp"
37            android:layout_height="24dp"
38            android:layout_weight="1"
39            android:background="@color/background_color3"/>
40
41        <com.airbnb.lottie.samples.views.BackgroundColorView
42            android:id="@+id/backgroundButton4"
43            android:layout_width="0dp"
44            android:layout_height="24dp"
45            android:layout_weight="1"
46            android:background="@color/background_color4"/>
47
48        <com.airbnb.lottie.samples.views.BackgroundColorView
49            android:id="@+id/backgroundButton5"
50            android:layout_width="0dp"
51            android:layout_height="24dp"
52            android:layout_weight="1"
53            android:background="@color/background_color5"/>
54
55        <com.airbnb.lottie.samples.views.BackgroundColorView
56            android:id="@+id/backgroundButton6"
57            android:layout_width="0dp"
58            android:layout_height="24dp"
59            android:layout_weight="1"
60            android:background="@color/background_color6"/>
61
62        <ImageButton
63            android:id="@+id/closeBackgroundColorButton"
64            android:layout_width="32dp"
65            android:layout_height="32dp"
66            android:layout_marginRight="16dp"
67            android:background="?attr/selectableItemBackgroundBorderless"
68            app:srcCompat="@drawable/ic_close"/>
69    </LinearLayout>
70
71    <View
72        android:layout_width="match_parent"
73        android:layout_height="@dimen/divider_height"
74        android:layout_gravity="bottom"
75        android:background="@color/divider"/>
76</FrameLayout>
77