1 /* 2 * Copyright (C) 2015 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 17 package com.android.tv.ui.sidepanel; 18 19 import android.view.View; 20 import android.widget.TextView; 21 import com.android.tv.R; 22 23 public class DividerItem extends Item { 24 private TextView mTitleView; 25 private String mTitle; 26 DividerItem()27 public DividerItem() {} 28 DividerItem(String title)29 public DividerItem(String title) { 30 mTitle = title; 31 } 32 33 @Override getResourceId()34 protected int getResourceId() { 35 return R.layout.option_item_divider; 36 } 37 38 @Override onBind(View view)39 protected void onBind(View view) { 40 super.onBind(view); 41 mTitleView = (TextView) view.findViewById(R.id.title); 42 if (mTitle == null) { 43 mTitleView.setVisibility(View.GONE); 44 view.setMinimumHeight(0); 45 } else { 46 mTitleView.setVisibility(View.VISIBLE); 47 mTitleView.setText(mTitle); 48 view.setMinimumHeight( 49 view.getContext() 50 .getResources() 51 .getDimensionPixelOffset(R.dimen.option_item_height)); 52 } 53 } 54 55 @Override onUnbind()56 protected void onUnbind() { 57 mTitleView = null; 58 } 59 60 @Override onSelected()61 protected void onSelected() {} 62 } 63