2014-08-22 23:09:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-08-26 17:54:08 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-22 23:09:37 +00:00
|
|
|
xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3"
|
|
|
|
android:id="@+id/longpress_cling"
|
|
|
|
android:layout_width="match_parent"
|
2014-08-26 17:54:08 +00:00
|
|
|
android:layout_height="match_parent"
|
2014-09-23 23:22:10 +00:00
|
|
|
android:background="@color/cling_scrim_background"
|
2014-08-26 17:54:08 +00:00
|
|
|
android:orientation="vertical" >
|
2014-08-22 23:09:37 +00:00
|
|
|
|
2014-08-26 17:54:08 +00:00
|
|
|
<Space
|
2014-08-22 23:09:37 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-08-26 17:54:08 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
2014-08-22 23:09:37 +00:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/cling_content"
|
|
|
|
android:layout_width="360dp"
|
|
|
|
android:layout_height="wrap_content"
|
2014-08-26 17:54:08 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:background="@drawable/cling_bg" />
|
2014-08-22 23:09:37 +00:00
|
|
|
|
2014-08-26 17:54:08 +00:00
|
|
|
<Space
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="2" />
|
|
|
|
|
|
|
|
</LinearLayout>
|