1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:launcher="http://schemas.android.com/apk/res-auto" 4 android:id="@+id/longpress_cling" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 launcher:layout_ignoreInsets="true" 8 android:background="@color/cling_scrim_background" 9 android:orientation="vertical" > 10 11 <Space 12 android:layout_width="match_parent" 13 android:layout_height="0dp" 14 android:layout_weight="1" /> 15 16 <FrameLayout 17 android:id="@+id/cling_content" 18 android:layout_width="360dp" 19 android:layout_height="wrap_content" 20 android:layout_gravity="center_horizontal" 21 android:background="@drawable/cling_bg" /> 22 23 <Space 24 android:layout_width="match_parent" 25 android:layout_height="0dp" 26 android:layout_weight="2" /> 27 28 </LinearLayout>