• 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/scaleContainer"
6    android:layout_width="match_parent"
7    android:layout_height="wrap_content"
8    android:visibility="gone">
9
10    <LinearLayout
11        android:layout_width="match_parent"
12        android:layout_height="64dp"
13        android:layout_gravity="center_vertical"
14        android:background="@android:color/white"
15        android:gravity="center_vertical"
16        android:orientation="horizontal">
17
18        <TextView
19            android:id="@+id/scaleText"
20            android:layout_width="64dp"
21            android:layout_height="wrap_content"
22            android:gravity="center"
23            android:textColor="#222222"
24            android:textSize="14sp"/>
25
26        <androidx.appcompat.widget.AppCompatSeekBar
27            android:id="@+id/scaleSeekBar"
28            android:layout_width="0dp"
29            android:layout_height="wrap_content"
30            android:layout_marginRight="8dp"
31            android:layout_weight="1"/>
32
33        <ImageButton
34            android:id="@+id/closeScaleButton"
35            android:layout_width="32dp"
36            android:layout_height="32dp"
37            android:layout_marginRight="16dp"
38            android:background="?attr/selectableItemBackgroundBorderless"
39            app:srcCompat="@drawable/ic_close"/>
40    </LinearLayout>
41
42    <View
43        android:layout_width="match_parent"
44        android:layout_height="@dimen/divider_height"
45        android:layout_gravity="bottom"
46        android:background="@color/divider"/>
47</FrameLayout>
48