16f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing/*
26f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * Copyright (C) 2014 The Android Open Source Project
36f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing *
46f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
56f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * in compliance with the License. You may obtain a copy of the License at
66f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing *
76f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * http://www.apache.org/licenses/LICENSE-2.0
86f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing *
96f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * Unless required by applicable law or agreed to in writing, software distributed under the License
106f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
116f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * or implied. See the License for the specific language governing permissions and limitations under
126f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing * the License.
136f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing */
146f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesingpackage com.example.android.leanback;
156f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing
166f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesingimport android.app.Activity;
176f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesingimport android.os.Bundle;
186f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing
196f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesingpublic class BrowseActivity extends Activity {
206f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing    /** Called when the activity is first created. */
216f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing    @Override
226f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing    public void onCreate(Bundle savedInstanceState) {
236f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing        super.onCreate(savedInstanceState);
246f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing        setContentView(R.layout.browse);
256f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing    }
26a5e729eb7c417a872876ac6f2b904bc8d232aa06Craig Stout
276f0d24aab5d9668c489097d26d4c3643f575b0c8Kris Giesing}
28