Sunday, August 7, 2016

VR sample 1.1

/* Copyright 2015 Samsung Electronics Co., LTD * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */
package org.gearvrf.balloons;
import org.gearvrf.GVRActivity;import org.gearvrf.scene_objects.view.GVRTextView;
import android.content.Intent;import android.graphics.Color;import android.os.Bundle;import android.view.Gravity;import android.view.MotionEvent;
public class BalloonActivity extends GVRActivity {

    BalloonMain main;    GVRTextView mTextView;    @Override    protected void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        mTextView = new GVRTextView(this);        mTextView.setText("Android's Rederable Views");        mTextView.setTextColor(Color.WHITE);
//        GVRTextView textView = new GVRTextView(this, 1000, 500);//        textView.setBackgroundColor(Color.BLACK);//        textView.setTextColor(Color.WHITE);//        textView.setTextSize(18);//        textView.setGravity(Gravity.CENTER);//        textView.setText("tttttttttttttttttttttttttttt");        main = new BalloonMain(this);      //  main = new BalloonMain(mTextView);
        setMain(main, "gvr.xml");    }

    @Override    public boolean onTouchEvent(MotionEvent event) {
        main.onTouchEvent(event);        return super.onTouchEvent(event);    }

    @Override    public void startActivityForResult(Intent intent, int requestCode, Bundle options) {
        if(intent==null){
            intent=new Intent();        }
        super.startActivityForResult(intent, requestCode, options);    }

}

No comments:

Post a Comment