153389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy/*
253389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * Copyright (C) 2010 The Android Open Source Project
353389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy *
453389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * Licensed under the Apache License, Version 2.0 (the "License");
553389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * you may not use this file except in compliance with the License.
653389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * You may obtain a copy of the License at
753389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy *
853389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy *      http://www.apache.org/licenses/LICENSE-2.0
953389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy *
1053389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * Unless required by applicable law or agreed to in writing, software
1153389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * distributed under the License is distributed on an "AS IS" BASIS,
1253389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1353389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * See the License for the specific language governing permissions and
1453389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy * limitations under the License.
1553389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy */
1653389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy
17f607bdc167f66b3e7003acaa4736ae46d78c1492Romain Guypackage com.android.test.hwui;
1853389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy
1953389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guyimport android.app.Activity;
2053389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guyimport android.os.Bundle;
2153389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy
2253389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy@SuppressWarnings({"UnusedDeclaration"})
2353389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guypublic class ResizeActivity extends Activity {
2453389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy    @Override
2553389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy    protected void onCreate(Bundle savedInstanceState) {
2653389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy        super.onCreate(savedInstanceState);
2753389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy
2853389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy        setContentView(R.layout.form);
2953389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy    }
3053389bdcdf6ffaaec533b73bc1d0abc5807ec7f6Romain Guy}
31