2016-02-20 22:54:41 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-05 23:53:47 +01:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
android:id="@+id/coordinator_layout"
|
2016-02-20 22:54:41 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2016-03-05 23:53:47 +01:00
|
|
|
android:layout_height="match_parent">
|
2016-02-20 22:54:41 +01:00
|
|
|
|
2016-03-05 23:53:47 +01:00
|
|
|
<LinearLayout
|
2016-02-20 22:54:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-03-05 23:53:47 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/black">
|
2016-02-20 22:54:41 +01:00
|
|
|
|
2016-03-05 23:53:47 +01:00
|
|
|
<com.simplemobiletools.gallery.MyViewPager
|
|
|
|
android:id="@+id/view_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|