Home | History | Annotate | Download | only in layout-land
      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/com.android.launcher3"
      4     android:id="@+id/longpress_cling"
      5     android:layout_width="match_parent"
      6     android:layout_height="match_parent"
      7     android:background="@color/cling_scrim_background"
      8     android:orientation="vertical" >
      9 
     10     <Space
     11         android:layout_width="match_parent"
     12         android:layout_height="0dp"
     13         android:layout_weight="1" />
     14 
     15     <FrameLayout
     16         android:id="@+id/cling_content"
     17         android:layout_width="360dp"
     18         android:layout_height="wrap_content"
     19         android:layout_gravity="center_horizontal"
     20         android:background="@drawable/cling_bg" />
     21 
     22     <Space
     23         android:layout_width="match_parent"
     24         android:layout_height="0dp"
     25         android:layout_weight="2" />
     26 
     27 </LinearLayout>