-
Notifications
You must be signed in to change notification settings - Fork 0
/
TwitterLikeImageViewer.axml
42 lines (42 loc) · 1.67 KB
/
TwitterLikeImageViewer.axml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<androidslidelayout.SlideLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/SlideLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidpagelayout.PageLayout
android:id="@+id/PageLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:page_orientation="horizontal"
app:draggable_vertical_direction="true">
<ImageView
android:id="@+id/Image1"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:page_view="true"
android:src="@drawable/icon"
android:scaleType="centerCrop" />
<ImageView
android:id="@+id/Image2"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:page_view="true"
android:src="@drawable/icon"
android:scaleType="centerCrop" />
<ImageView
android:id="@+id/Image3"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:page_view="true"
android:src="@drawable/icon"
android:scaleType="centerCrop" />
<ImageView
android:id="@+id/Image4"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:page_view="true"
android:src="@drawable/icon"
android:scaleType="centerCrop" />
</androidpagelayout.PageLayout>
</androidslidelayout.SlideLayout>