Home | History | Annotate | Download | only in widget
      1 /*
      2  * Copyright (C) 2014 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
      5  * in compliance with the License. You may obtain a copy of the License at
      6  *
      7  * http://www.apache.org/licenses/LICENSE-2.0
      8  *
      9  * Unless required by applicable law or agreed to in writing, software distributed under the License
     10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     11  * or implied. See the License for the specific language governing permissions and limitations under
     12  * the License.
     13  */
     14 package androidx.leanback.widget;
     15 
     16 import android.content.Context;
     17 import android.util.AttributeSet;
     18 import android.widget.TextView;
     19 
     20 import androidx.leanback.R;
     21 
     22 /**
     23  * RowHeaderView is a header text view.
     24  */
     25 public final class RowHeaderView extends TextView {
     26 
     27     public RowHeaderView(Context context) {
     28         this(context, null);
     29     }
     30 
     31     public RowHeaderView(Context context, AttributeSet attrs) {
     32         this(context, attrs, R.attr.rowHeaderStyle);
     33     }
     34 
     35     public RowHeaderView(Context context, AttributeSet attrs, int defStyle) {
     36         super(context, attrs, defStyle);
     37     }
     38 
     39 }
     40