FrameMetricsSubActivity.java revision b56412b5318f17367d1e93ed3f6c0e196036bbad
1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.support.v4.app;
18
19import android.app.Activity;
20import android.graphics.Color;
21import android.os.Bundle;
22import android.view.View;
23import android.view.ViewGroup;
24import android.widget.LinearLayout;
25
26public class FrameMetricsSubActivity extends Activity {
27
28    LinearLayout mLayout;
29    View mView;
30
31    @Override
32    protected void onCreate(Bundle savedInstanceState) {
33        super.onCreate(savedInstanceState);
34
35        mLayout = new LinearLayout(this);
36        mLayout.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
37                ViewGroup.LayoutParams.MATCH_PARENT));
38        mLayout.setBackgroundColor(Color.CYAN);
39        setContentView(mLayout);
40
41        mView = new View(this);
42        mView.setLayoutParams(new LinearLayout.LayoutParams(500, 500));
43        mView.setBackgroundColor(Color.RED);
44        mLayout.addView(mView);
45    }
46}
47