summaryrefslogtreecommitdiff
path: root/espresso/espresso-sample/src/main/res/layout/swipe_activity.xml
diff options
context:
space:
mode:
Diffstat (limited to 'espresso/espresso-sample/src/main/res/layout/swipe_activity.xml')
-rw-r--r--espresso/espresso-sample/src/main/res/layout/swipe_activity.xml54
1 files changed, 0 insertions, 54 deletions
diff --git a/espresso/espresso-sample/src/main/res/layout/swipe_activity.xml b/espresso/espresso-sample/src/main/res/layout/swipe_activity.xml
deleted file mode 100644
index e7bfa76..0000000
--- a/espresso/espresso-sample/src/main/res/layout/swipe_activity.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- ~ Copyright (C) 2014 The Android Open Source Project
- ~
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <!-- With update to rev 19, swipe does not consistently work on small pagers
- b/12113054 opened to investigate why this regressed .-->
- <android.support.v4.view.ViewPager
- android:id="@+id/small_pager"
- android:layout_width="120dp"
- android:layout_height="48dp" />
-
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="200dp">
- <android.support.v4.view.ViewPager
- android:id="@+id/overlapped_pager"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_alignParentTop="true"
- android:layout_alignParentLeft="true"/>
- <TextView
- android:layout_width="50dp"
- android:layout_height="fill_parent"
- android:background="#CCCCCC"
- android:layout_alignParentTop="true"
- android:layout_alignParentLeft="true"/>
- </RelativeLayout>
-
- <TextView
- android:id="@+id/text_simple"
- android:text="@string/text_simple"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
-
-</LinearLayout>