错误 VrPanoramaView Xml

Error VrPanoramaView Xml

我正在为来自 Google

的 vr360 图像使用新库

我有一个问题,当我 运行 Samsung Galaxy s6 (6.0) 上的应用程序崩溃时。但是当我 运行 其他设备上的应用程序等 Nexus 4 (5.+) 所有 运行 都很好。

我尝试 运行 S6 上的 Lab 应用程序并且运行完美.. 演示 Url:https://codelabs.developers.google.com/codelabs/vr_view_app_101/index.html?index=..%2F..%2Findex#0

我的错误:

android.view.InflateException: Binary XML file line #8: Binary XML file line #8: Error inflating class com.google.vr.sdk.widgets.pano.VrPanoramaView

我的Xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <com.google.vr.sdk.widgets.pano.VrPanoramaView
        android:id="@+id/pano_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dip" />

</LinearLayout>

我的Gradle:

   compile project(':gvr-android-sdk/libraries:common')
    compile project(':gvr-android-sdk/libraries:commonwidget')
    compile project(':gvr-android-sdk/libraries:panowidget')

和Settings.gradle

include ':gvr-android-sdk/libraries:audio'
include ':gvr-android-sdk/libraries:base'
include ':gvr-android-sdk/libraries:common'
include ':gvr-android-sdk/libraries:commonwidget'
include ':gvr-android-sdk/libraries:panowidget'
include ':gvr-android-sdk/libraries:videowidget'

替换为:compile project(':gvr-android-sdk/libraries:panowidget')

为此:编译项目(':gvr-android-sdk/libraries:videowidget')

将以下 abiFilters 添加到项目 build.gradle 文件中的 buildTypes。

buildTypes {
    release {
        ndk {
            abiFilters "armeabi", "armeabi-v7a", "x86"
        }
    }}