赞
踩
VR技术的热度每年都在增长,在购物、旅游等方面运用度很高。该项目引用了Google的vr:sdk-panowidget依赖库,通过VrPanoramaView,简单实现在手机上查看全景照片,下面是项目介绍。
build.gradle(Module:app)需要导入依赖:
dependencies {
implementation ‘com.google.vr:sdk-panowidget:1.30.0’
}
布局文件 activity_main.xml,调用Google的VrPanoramaView。在运行时支持触摸水平滑动浏览全景,不支持垂直方向;实现自动调用手机陀螺仪传感器,进行同步旋转全景图片。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<com.google.vr.sdk.widgets.pano.VrPanoramaView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/my_vr_view">
</com.google.vr.sdk.widgets.pano.VrPanoramaView>
</RelativeLayout>
MainActivity文件,在应用运行时,读取assets文件中的素材pic.jpg,调用makeimageToByte方法转换格式。
Options是VrPanoramaView所需的设置,设置TYPE_MONO,图像被预期以覆盖沿着其水平轴360度,使图片可以360水平旋转。
若使用VR设备,可以设置TYPE_STEREO_OVER_UNDER,将图片分割成重合度很高两部分,分别对应左眼与右眼。
public class MainActivity extends AppCompatActivity { /** * vr控件 */ private VrPanoramaView vrpview; /** * byte格式 */ private Bitmap bitmap = null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); vrpview = (VrPanoramaView) findViewById(R.id.my_vr_view); Vr
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。