【Android開發VR實戰】一.給使用者呈現一個360°全景圖片

DylanAndroid發表於2019-03-01

轉載請註明出處:http://blog.csdn.net/linglongxin24/article/details/53905681
本文出自【DylanAndroid的部落格】


【Android開發VR實戰】一.給使用者呈現一個360°全景圖片

VR即Virtual Reality虛擬現實。虛擬現實技術是一種可以建立和體驗虛擬世界的計算機模擬系統它利用計算機生成一種模擬環境是一種多源資訊融合的互動式的三維動態視景和實體行為的系統模擬使使用者沉浸到該環境中。
那麼,如何在Android中去開發VR功能的APP呢?我們利用谷歌提供的開源SDK去實現一個360°全景圖片的功能

【Android開發VR實戰】一.給使用者呈現一個360°全景圖片

【Android開發VR實戰】一.給使用者呈現一個360°全景圖片

一.在build.gradle中引入谷歌VR的SDK依賴

 compile 'com.google.vr:sdk-panowidget:1.10.0'複製程式碼

二.注意支援的最小SDK

  minSdkVersion 19
  targetSdkVersion 25複製程式碼

三.介面佈局檔案

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="cn.bluemobi.dylan.vrdevelop.MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="AndroidVR開發360度全景圖片" />

    <com.google.vr.sdk.widgets.pano.VrPanoramaView
        android:id="@+id/vr_pan_view"
        android:layout_width="match_parent"
        android:layout_marginTop="20dp"
        android:layout_height="250dp"></com.google.vr.sdk.widgets.pano.VrPanoramaView>
</LinearLayout>複製程式碼

四.載入360°全景圖片


    /**
     * 載入360度全景圖片
     */
    private void load360Image() {
        vr_pan_view = (VrPanoramaView) findViewById(R.id.vr_pan_view);
        /**獲取assets資料夾下的圖片**/
        InputStream open = null;
        try {
            open = getAssets().open("andes.jpg");
        } catch (IOException e) {
            e.printStackTrace();
        }
        Bitmap bitmap = BitmapFactory.decodeStream(open);
        /**設定載入VR圖片的相關設定**/
        VrPanoramaView.Options options = new VrPanoramaView.Options();
        options.inputType = VrPanoramaView.Options.TYPE_STEREO_OVER_UNDER;
        /**設定載入VR圖片監聽**/
        vr_pan_view.setEventListener(new VrPanoramaEventListener() {
            /**
             * 顯示模式改變回撥
             * 1.預設
             * 2.全屏模式
             * 3.VR觀看模式,即橫屏分屏模式
             * @param newDisplayMode 模式
             */
            @Override
            public void onDisplayModeChanged(int newDisplayMode) {
                super.onDisplayModeChanged(newDisplayMode);
                Log.d(TAG, "onDisplayModeChanged()->newDisplayMode=" + newDisplayMode);
            }

            /**
             * 載入VR圖片失敗回撥
             * @param errorMessage
             */
            @Override
            public void onLoadError(String errorMessage) {
                super.onLoadError(errorMessage);
                Log.d(TAG, "onLoadError()->errorMessage=" + errorMessage);
            }

            /**
             * 載入VR圖片成功回撥
             */
            @Override
            public void onLoadSuccess() {
                super.onLoadSuccess();
                Log.d(TAG, "onLoadSuccess->圖片載入成功");
            }

            /**
             * 點選VR圖片回撥
             */
            @Override
            public void onClick() {
                super.onClick();
                Log.d(TAG, "onClick()");
            }
        });
        /**載入VR圖片**/
        vr_pan_view.loadImageFromBitmap(bitmap, options);
    }複製程式碼

五.GitHub

相關文章