2017-05-20 13:12:12 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2017-07-27 17:51:52 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/staticImageViewLayout"
|
2017-05-20 13:12:12 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-07-27 17:51:52 +02:00
|
|
|
android:layout_height="match_parent">
|
2017-05-20 13:12:12 +02:00
|
|
|
|
2017-07-27 17:51:52 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView"
|
|
|
|
android:layout_width="match_parent"
|
2017-05-20 13:12:12 +02:00
|
|
|
android:layout_height="match_parent"
|
2017-07-27 17:51:52 +02:00
|
|
|
android:scaleType="centerCrop"/>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:background="@android:color/transparent">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/leftArrowButton"
|
|
|
|
android:layout_width="44dp"
|
|
|
|
android:layout_height="44dp"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:src="@drawable/ic_arrow_back"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/rightArrowButton"
|
|
|
|
android:layout_width="44dp"
|
|
|
|
android:layout_height="44dp"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:src="@drawable/ic_arrow_forward"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/mapillary_no_internet"
|
|
|
|
android:id="@+id/mapillaryNoInternetLayout"
|
|
|
|
android:visibility="gone"/>
|
2017-05-20 13:12:12 +02:00
|
|
|
|
|
|
|
</FrameLayout>
|