mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-25 05:57:59 +01:00
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/panorama_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#FF000000">
|
|
|
|
<com.google.vr.sdk.widgets.pano.VrPanoramaView
|
|
android:id="@+id/panorama_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/cardboard"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:padding="@dimen/activity_margin"
|
|
android:src="@drawable/ic_cardboard"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/explore"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:padding="@dimen/activity_margin"
|
|
android:src="@drawable/ic_explore"/>
|
|
|
|
</RelativeLayout>
|