本文整理汇总了Java中android.widget.FrameLayout.setSystemUiVisibility方法的典型用法代码示例。如果您正苦于以下问题:Java FrameLayout.setSystemUiVisibility方法的具体用法?Java FrameLayout.setSystemUiVisibility怎么用?Java FrameLayout.setSystemUiVisibility使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.FrameLayout
的用法示例。
在下文中一共展示了FrameLayout.setSystemUiVisibility方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createView
import android.widget.FrameLayout; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
public View createView(Context context) {
actionBar.setVisibility(View.GONE);
fragmentView = new FrameLayout(context) {
@Override
public boolean onTouchEvent(MotionEvent event) {
if (cameraOpened && processTouchEvent(event)) {
return true;
} else {
return super.onTouchEvent(event);
}
}
};
FrameLayout frameLayout = (FrameLayout) fragmentView;
frameLayout.setBackgroundColor(0xff000000);
frameLayout.setLayoutParams(LayoutHelper.createFrame(LayoutHelper.MATCH_PARENT, LayoutHelper.MATCH_PARENT));
if (Build.VERSION.SDK_INT >= 21) {
frameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_FULLSCREEN);
}
initView(context);
return fragmentView;
}
示例2: restoreSystemVisibility
import android.widget.FrameLayout; //导入方法依赖的package包/类
void restoreSystemVisibility(Activity activity) {
if (mRestoreSystemVisibility) {
FrameLayout decor = (FrameLayout) activity.getWindow().getDecorView();
// In some cases we come out of fullscreen before closing this dialog. In these
// cases we don't want to restore the system UI visibility state.
int systemVisibility = decor.getSystemUiVisibility();
if ((systemVisibility & View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN) != 0) {
decor.setSystemUiVisibility(mSystemVisibility);
}
}
}
开发者ID:rkshuai,项目名称:chromium-for-android-56-debug-video,代码行数:12,代码来源:MediaRouteChooserDialogFactory.java
示例3: restoreSystemVisibility
import android.widget.FrameLayout; //导入方法依赖的package包/类
void restoreSystemVisibility(Activity activity) {
if (!mWasFullscreenBeforeShowing) return;
FrameLayout decor = (FrameLayout) activity.getWindow().getDecorView();
// In some cases we come out of fullscreen before closing this dialog. In these
// cases we don't want to restore the system UI visibility state.
boolean isStillFullscreen =
(decor.getSystemUiVisibility() & View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN) == 0;
if (!isStillFullscreen) return;
decor.setSystemUiVisibility(mSystemVisibilityToRestore);
}
开发者ID:rkshuai,项目名称:chromium-for-android-56-debug-video,代码行数:13,代码来源:BaseMediaRouteDialogManager.java