本文整理匯總了Java中android.support.v7.app.ActionBar.isShowing方法的典型用法代碼示例。如果您正苦於以下問題:Java ActionBar.isShowing方法的具體用法?Java ActionBar.isShowing怎麽用?Java ActionBar.isShowing使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.support.v7.app.ActionBar
的用法示例。
在下文中一共展示了ActionBar.isShowing方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: resolveControlsVisibility
import android.support.v7.app.ActionBar; //導入方法依賴的package包/類
private void resolveControlsVisibility() {
ActionBar actionBar = getSupportActionBar();
if (actionBar == null)
return;
if (actionBar.isShowing()) {
//toolbar_with_elevation.animate().translationY(-toolbar_with_elevation.getBottom()).setInterpolator(new AccelerateInterpolator()).start();
actionBar.hide();
mControllerView.hide();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
mDecorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_IMMERSIVE);
} else {
mDecorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN);
}
} else {
//toolbar_with_elevation.animate().translationY(0).setInterpolator(new DecelerateInterpolator()).start();
actionBar.show();
mControllerView.show();
mDecorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
}
}
示例2: showActionBar
import android.support.v7.app.ActionBar; //導入方法依賴的package包/類
private void showActionBar(boolean show) {
ActionBar bar = getSupportActionBar();
if (bar != null) {
if (!show && bar.isShowing()) {
bar.hide();
} else if (show && !bar.isShowing()) {
bar.show();
}
}
}
示例3: onActivityCreated
import android.support.v7.app.ActionBar; //導入方法依賴的package包/類
@SuppressWarnings("ConstantConditions")
@Override
public void onActivityCreated(final Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
final ActionBar actionBar = ((MainActivity) getActivity()).getSupportActionBar();
if (actionBar.isShowing()) {
actionBar.hide();
}
}
示例4: toggleActionBarVisibility
import android.support.v7.app.ActionBar; //導入方法依賴的package包/類
@SuppressWarnings("ConstantConditions")
private void toggleActionBarVisibility(final boolean visible) {
final ActionBar actionBar = getSupportActionBar();
if (visible) {
if (!actionBar.isShowing()) {
actionBar.show();
}
} else if (actionBar.isShowing()) {
actionBar.hide();
}
}