17975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy/*
27975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * Copyright (C) 2010 The Android Open Source Project
37975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy *
47975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * Licensed under the Apache License, Version 2.0 (the "License");
57975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * you may not use this file except in compliance with the License.
67975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * You may obtain a copy of the License at
77975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy *
87975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy *      http://www.apache.org/licenses/LICENSE-2.0
97975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy *
107975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * Unless required by applicable law or agreed to in writing, software
117975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * distributed under the License is distributed on an "AS IS" BASIS,
127975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
137975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * See the License for the specific language governing permissions and
147975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy * limitations under the License.
157975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy */
167975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy
177975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guypackage com.android.test.hwui;
187975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy
197975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guyimport android.app.Activity;
207975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guyimport android.os.Bundle;
217975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy
227975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy@SuppressWarnings({"UnusedDeclaration"})
237975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guypublic class LabelsActivity extends Activity {
247975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy    @Override
257975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy    protected void onCreate(Bundle savedInstanceState) {
267975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy        super.onCreate(savedInstanceState);
277975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy        setContentView(R.layout.labels);
287975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy    }
297975fb6d12cb1eb96b75e3a563627cd4c4081bd6Romain Guy}
30