AI2 Component  (Version nb184)
ThemeHelper.java
Go to the documentation of this file.
1 // -*- mode: java; c-basic-offset: 2; -*-
2 // Copyright 2018 MIT, All rights reserved
3 // Released under the Apache License, Version 2.0
4 // http://www.apache.org/licenses/LICENSE-2.0
5 
6 package com.google.appinventor.components.runtime.util.theme;
7 
8 public interface ThemeHelper {
12  void requestActionBar();
13 
20  boolean setActionBarVisible(boolean visible);
21 
26  boolean hasActionBar();
27 
32  void setTitle(String title);
33 
38  void setActionBarAnimation(boolean enabled);
39 
46  void setTitle(String title, boolean black);
47 }
com.google.appinventor.components.runtime.util.theme.ThemeHelper
Definition: ThemeHelper.java:8
com.google.appinventor.components.runtime.util.theme.ThemeHelper.setTitle
void setTitle(String title)
com.google.appinventor.components.runtime.util.theme.ThemeHelper.hasActionBar
boolean hasActionBar()
com.google.appinventor.components.runtime.util.theme.ThemeHelper.requestActionBar
void requestActionBar()
com.google.appinventor.components.runtime.util.theme.ThemeHelper.setActionBarVisible
boolean setActionBarVisible(boolean visible)
com.google.appinventor.components.runtime.util.theme.ThemeHelper.setActionBarAnimation
void setActionBarAnimation(boolean enabled)