当前位置: 首页>>代码示例>>Java>>正文


Java Vuforia.init方法代码示例

本文整理汇总了Java中com.vuforia.Vuforia.init方法的典型用法代码示例。如果您正苦于以下问题:Java Vuforia.init方法的具体用法?Java Vuforia.init怎么用?Java Vuforia.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.vuforia.Vuforia的用法示例。


在下文中一共展示了Vuforia.init方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: doInBackground

import com.vuforia.Vuforia; //导入方法依赖的package包/类
protected Boolean doInBackground(Void... params)
{
    // Prevent the onDestroy() method to overlap with initialization:
    synchronized (mShutdownLock)
    {
        Vuforia.setInitParameters(mActivity, mVuforiaFlags, mActivity.getString(R.string.vuforia_key));

        do
        {
            // Vuforia.init() blocks until an initialization step is
            // complete, then it proceeds to the next step and reports
            // progress in percents (0 ... 100%).
            // If Vuforia.init() returns -1, it indicates an error.
            // Initialization is done when progress has reached 100%.
            mProgressValue = Vuforia.init();

            // Publish the progress value:
            publishProgress(mProgressValue);

            // We check whether the task has been canceled in the
            // meantime (by calling AsyncTask.cancel(true)).
            // and bail out if it has, thus stopping this thread.
            // This is necessary as the AsyncTask will run to completion
            // regardless of the status of the component that
            // started is.
        } while (!isCancelled() && mProgressValue >= 0
                && mProgressValue < 100);

        return (mProgressValue > 0);
    }
}
 
开发者ID:daemontus,项目名称:VuforiaLibGDX,代码行数:32,代码来源:AppSession.java

示例2: doInBackground

import com.vuforia.Vuforia; //导入方法依赖的package包/类
protected Boolean doInBackground(Void... params)
{
    // Prevent the onDestroy() method to overlap with initialization:
    synchronized (mShutdownLock)
    {
        Vuforia.setInitParameters(mActivity, mVuforiaFlags, mLicenseKey);

        do
        {
            // Vuforia.init() blocks until an initialization step is
            // complete, then it proceeds to the next step and reports
            // progress in percents (0 ... 100%).
            // If Vuforia.init() returns -1, it indicates an error.
            // Initialization is done when progress has reached 100%.
            mProgressValue = Vuforia.init();

            // Publish the progress value:
            publishProgress(mProgressValue);

            // We check whether the task has been canceled in the
            // meantime (by calling AsyncTask.cancel(true)).
            // and bail out if it has, thus stopping this thread.
            // This is necessary as the AsyncTask will run to completion
            // regardless of the status of the component that
            // started is.
        } while (!isCancelled() && mProgressValue >= 0
            && mProgressValue < 100);

        return (mProgressValue > 0);
    }
}
 
开发者ID:mattrayner,项目名称:cordova-plugin-vuforia,代码行数:32,代码来源:ApplicationSession.java

示例3: doInBackground

import com.vuforia.Vuforia; //导入方法依赖的package包/类
protected Boolean doInBackground(Void... params)
{
    // Prevent the onDestroy() method to overlap with initialization:
    synchronized (mShutdownLock)
    {
        //Vuforia.setInitParameters(mActivity, mVuforiaFlags, "ADD KEY HERE");
        Vuforia.setInitParameters(mActivity, mVuforiaFlags, mActivity.getString(R.string.vuforia_key));

        do
        {
            // Vuforia.init() blocks until an initialization step is
            // complete, then it proceeds to the next step and reports
            // progress in percents (0 ... 100%).
            // If Vuforia.init() returns -1, it indicates an error.
            // Initialization is done when progress has reached 100%.
            mProgressValue = Vuforia.init();
            
            // Publish the progress value:
            publishProgress(mProgressValue);
            
            // We check whether the task has been canceled in the
            // meantime (by calling AsyncTask.cancel(true)).
            // and bail out if it has, thus stopping this thread.
            // This is necessary as the AsyncTask will run to completion
            // regardless of the status of the component that
            // started is.
        } while (!isCancelled() && mProgressValue >= 0
            && mProgressValue < 100);

        return (mProgressValue > 0);
    }
}
 
开发者ID:daemontus,项目名称:VuforiaTransparentVideo,代码行数:33,代码来源:SampleApplicationSession.java


注:本文中的com.vuforia.Vuforia.init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。