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