longpress_cling.xml 922 B

123456789101112131415161718192021222324252627
  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. <Space
  10. android:layout_width="match_parent"
  11. android:layout_height="0dp"
  12. android:layout_weight="1" />
  13. <FrameLayout
  14. android:id="@+id/cling_content"
  15. android:layout_width="360dp"
  16. android:layout_height="wrap_content"
  17. android:layout_gravity="center_horizontal"
  18. android:background="@drawable/cling_bg" />
  19. <Space
  20. android:layout_width="match_parent"
  21. android:layout_height="0dp"
  22. android:layout_weight="2" />
  23. </LinearLayout>