AI2 Component  (Version nb184)
Layout.java
Go to the documentation of this file.
1 // -*- mode: java; c-basic-offset: 2; -*-
2 // Copyright 2009-2011 Google, All Rights reserved
3 // Copyright 2011-2012 MIT, All rights reserved
4 // Released under the Apache License, Version 2.0
5 // http://www.apache.org/licenses/LICENSE-2.0
6 
7 package com.google.appinventor.components.runtime;
8 
9 import android.view.ViewGroup;
10 
16 public interface Layout {
17 
24  ViewGroup getLayoutManager();
25 
31  void add(AndroidViewComponent component);
32 }
com.google.appinventor.components.runtime.Layout
Definition: Layout.java:16
com.google.appinventor.components.runtime.Layout.add
void add(AndroidViewComponent component)
com.google.appinventor.components.runtime.Layout.getLayoutManager
ViewGroup getLayoutManager()
com.google.appinventor.components.runtime.AndroidViewComponent
Definition: AndroidViewComponent.java:27