* this panel will be attached to the activity * @param layoutId * the panel's layout id */ public BasePanel(Activity activity, int layoutId) { this.activity = activity; this.layoutId = layoutId; } /** * The developer can use this method to add the panel to the Activity. * * @...