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
17import android.content.Context;
18import android.graphics.Color;
19import android.util.AttributeSet;
20import android.widget.TextView;
21
22@SuppressWarnings("unused") // Used by test
23public class CustomComponent extends TextView {
24    public CustomComponent(Context context) {
25        super(context);
26
27        init();
28    }
29
30    public CustomComponent(Context context, AttributeSet attrs) {
31        super(context, attrs);
32
33        init();
34    }
35
36    public CustomComponent(Context context, AttributeSet attrs, int defStyleAttr) {
37        super(context, attrs, defStyleAttr);
38
39        init();
40    }
41
42    public CustomComponent(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
43        super(context, attrs, defStyleAttr, defStyleRes);
44
45        init();
46    }
47
48    private void init() {
49        setText("CustomComponent text");
50        setBackgroundColor(Color.RED);
51        setTextColor(Color.WHITE);
52        setTextSize(40f);
53    }
54}
55