public class PanoramaGLActivity extends PLView
{
/**init methods*/
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
//Load panorama
PLSpherical2Panorama panorama = new PLSpherical2Panorama();
panorama.getCamera().lookAt(30.0f, 90.0f);
panorama.setImage(new PLImage(PLUtils.getBitmap(this, R.raw.spherical_pano), false));
this.setPanorama(panorama);
}
如何全屏显示?