本文整理汇总了Java中org.chromium.chrome.browser.metrics.WebappUma类的典型用法代码示例。如果您正苦于以下问题:Java WebappUma类的具体用法?Java WebappUma怎么用?Java WebappUma使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WebappUma类属于org.chromium.chrome.browser.metrics包,在下文中一共展示了WebappUma类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initializeWebappData
import org.chromium.chrome.browser.metrics.WebappUma; //导入依赖的package包/类
private void initializeWebappData() {
final int backgroundColor = ColorUtils.getOpaqueColor(mWebappInfo.backgroundColor(
ApiCompatibilityUtils.getColor(getResources(), R.color.webapp_default_bg)));
mSplashScreen = new FrameLayout(this);
mSplashScreen.setBackgroundColor(backgroundColor);
ViewGroup contentView = (ViewGroup) findViewById(android.R.id.content);
contentView.addView(mSplashScreen);
mWebappUma.splashscreenVisible();
mWebappUma.recordSplashscreenBackgroundColor(mWebappInfo.hasValidBackgroundColor()
? WebappUma.SPLASHSCREEN_COLOR_STATUS_CUSTOM
: WebappUma.SPLASHSCREEN_COLOR_STATUS_DEFAULT);
mWebappUma.recordSplashscreenThemeColor(mWebappInfo.hasValidThemeColor()
? WebappUma.SPLASHSCREEN_COLOR_STATUS_CUSTOM
: WebappUma.SPLASHSCREEN_COLOR_STATUS_DEFAULT);
initializeSplashScreenWidgets(backgroundColor);
}
示例2: initializeWebappData
import org.chromium.chrome.browser.metrics.WebappUma; //导入依赖的package包/类
private void initializeWebappData() {
if (mWebappInfo.displayMode() == WebDisplayMode.FULLSCREEN) {
enterImmersiveMode();
}
final int backgroundColor = ColorUtils.getOpaqueColor(mWebappInfo.backgroundColor(
ApiCompatibilityUtils.getColor(getResources(), R.color.webapp_default_bg)));
mSplashScreen = new FrameLayout(this);
mSplashScreen.setBackgroundColor(backgroundColor);
ViewGroup contentView = (ViewGroup) findViewById(android.R.id.content);
contentView.addView(mSplashScreen);
mWebappUma.splashscreenVisible();
mWebappUma.recordSplashscreenBackgroundColor(mWebappInfo.hasValidBackgroundColor()
? WebappUma.SPLASHSCREEN_COLOR_STATUS_CUSTOM
: WebappUma.SPLASHSCREEN_COLOR_STATUS_DEFAULT);
mWebappUma.recordSplashscreenThemeColor(mWebappInfo.hasValidThemeColor()
? WebappUma.SPLASHSCREEN_COLOR_STATUS_CUSTOM
: WebappUma.SPLASHSCREEN_COLOR_STATUS_DEFAULT);
initializeSplashScreenWidgets(backgroundColor);
}
示例3: WebappActivity
import org.chromium.chrome.browser.metrics.WebappUma; //导入依赖的package包/类
/**
* Construct all the variables that shouldn't change. We do it here both to clarify when the
* objects are created and to ensure that they exist throughout the parallelized initialization
* of the WebappActivity.
*/
public WebappActivity() {
mWebappInfo = createWebappInfo(null);
mDirectoryManager = new WebappDirectoryManager();
mWebappUma = new WebappUma();
}
示例4: initializeSplashScreenWidgets
import org.chromium.chrome.browser.metrics.WebappUma; //导入依赖的package包/类
protected void initializeSplashScreenWidgets(int backgroundColor, Bitmap splashImage) {
Bitmap displayIcon = splashImage == null ? mWebappInfo.icon() : splashImage;
int minimiumSizeThreshold = getResources().getDimensionPixelSize(
R.dimen.webapp_splash_image_size_minimum);
int bigThreshold = getResources().getDimensionPixelSize(
R.dimen.webapp_splash_image_size_threshold);
// Inflate the correct layout for the image.
int layoutId;
if (displayIcon == null || displayIcon.getWidth() < minimiumSizeThreshold
|| (displayIcon == mWebappInfo.icon() && mWebappInfo.isIconGenerated())) {
mWebappUma.recordSplashscreenIconType(WebappUma.SPLASHSCREEN_ICON_TYPE_NONE);
layoutId = R.layout.webapp_splash_screen_no_icon;
} else {
// The size of the splash screen image determines which layout to use.
boolean isUsingSmallSplashImage = displayIcon.getWidth() <= bigThreshold
|| displayIcon.getHeight() <= bigThreshold;
if (isUsingSmallSplashImage) {
layoutId = R.layout.webapp_splash_screen_small;
} else {
layoutId = R.layout.webapp_splash_screen_large;
}
// Record stats about the splash screen.
int splashScreenIconType;
if (splashImage == null) {
splashScreenIconType = WebappUma.SPLASHSCREEN_ICON_TYPE_FALLBACK;
} else if (isUsingSmallSplashImage) {
splashScreenIconType = WebappUma.SPLASHSCREEN_ICON_TYPE_CUSTOM_SMALL;
} else {
splashScreenIconType = WebappUma.SPLASHSCREEN_ICON_TYPE_CUSTOM;
}
mWebappUma.recordSplashscreenIconType(splashScreenIconType);
mWebappUma.recordSplashscreenIconSize(
Math.round(displayIcon.getWidth()
/ getResources().getDisplayMetrics().density));
}
ViewGroup subLayout = (ViewGroup) LayoutInflater.from(WebappActivity.this)
.inflate(layoutId, mSplashScreen, true);
// Set up the elements of the splash screen.
TextView appNameView = (TextView) subLayout.findViewById(
R.id.webapp_splash_screen_name);
ImageView splashIconView = (ImageView) subLayout.findViewById(
R.id.webapp_splash_screen_icon);
appNameView.setText(mWebappInfo.name());
if (splashIconView != null) splashIconView.setImageBitmap(displayIcon);
if (ColorUtils.shouldUseLightForegroundOnBackground(backgroundColor)) {
appNameView.setTextColor(ApiCompatibilityUtils.getColor(getResources(),
R.color.webapp_splash_title_light));
}
}