Home | History | Annotate | Download | only in DemoKit
      1 package com.google.android.DemoKit;
      2 
      3 public class DemoKitTablet extends BaseActivity {
      4 	private OutputController mOutputController;
      5 
      6 	protected void hideControls() {
      7 		super.hideControls();
      8 		mOutputController = null;
      9 	}
     10 
     11 	protected void showControls() {
     12 		super.showControls();
     13 		mOutputController = new OutputController(this, true);
     14 		mOutputController.accessoryAttached();
     15 	}
     16 }
     17