Searched defs:toolbar (Results 1 - 3 of 3) sorted by relevance

/gdk/samples/PhotoEditor/src/com/android/photoeditor/
H A DPhotoEditor.java37 private Toolbar toolbar; field in class:PhotoEditor
82 toolbar = (Toolbar) findViewById(R.id.toolbar);
83 toolbar.initialize();
113 toolbar.openPhoto(intent.getData());
125 toolbar.savePhoto(new Runnable() {
H A DToolbarLayoutHandler.java22 * Handler that adjusts layouts of toolbar's child views whose positions need being calculated
30 * Constructor should only be invoked after toolbar has done inflation and added all its child
33 public ToolbarLayoutHandler(View toolbar) { argument
34 this.tools = toolbar;
38 * Layouts child tool views' positions that need being updated when toolbar is being layout.
H A DToolbarIdleHandler.java30 * Handler that controls idle/awake behaviors of toolbar's child views.
45 * Constructor should only be invoked after toolbar has done inflation and added all its child
48 public ToolbarIdleHandler(ViewGroup toolbar) { argument
66 fadeIn = AnimationUtils.loadAnimation(toolbar.getContext(), R.anim.fade_in);
67 fadeOut = AnimationUtils.loadAnimation(toolbar.getContext(), R.anim.fade_out);
69 for (int i = 0; i < toolbar.getChildCount(); i++) {
70 View view = toolbar.getChildAt(i);
77 childViews.add(toolbar.findViewById(R.id.effects_container));

Completed in 93 milliseconds