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 abstract class ActionItem extends Item { 24 private final String mTitle; 25 private final String mDescription; 26 27 public ActionItem(String title) { 28 this(title, null); 29 } 30 31 public ActionItem(String title, String description) { 32 mTitle = title; 33 mDescription = description; 34 } 35 36 @Override 37 protected int getResourceId() { 38 return R.layout.option_item_action; 39 } 40 41 @Override 42 protected void onBind(View view) { 43 super.onBind(view); 44 TextView titleView = (TextView) view.findViewById(R.id.title); 45 titleView.setText(mTitle); 46 TextView descriptionView = (TextView) view.findViewById(R.id.description); 47 if (mDescription != null) { 48 descriptionView.setVisibility(View.VISIBLE); 49 descriptionView.setText(mDescription); 50 } else { 51 descriptionView.setVisibility(View.GONE); 52 } 53 } 54 } 55