本文整理汇总了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);
}
}
示例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);
}
}
示例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);
}
}