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