blob: 3042ac7f9f8e77600a7c87191415b92ce0675d36 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package com.android.car.list;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.android.car.list.R;
/**
* Contains logic for a line item represents text only view of a title and a description.
*/
public abstract class TextLineItem extends TypedPagedListAdapter.LineItem<TextLineItem.ViewHolder> {
protected final CharSequence mTitle;
/**
* Constructs a new TextLIneItem with the given title
*/
public TextLineItem(CharSequence title) {
mTitle = title;
}
@Override
public int getType() {
return TEXT_TYPE;
}
@Override
public void bindViewHolder(ViewHolder viewHolder) {
super.bindViewHolder(viewHolder);
viewHolder.titleView.setText(mTitle);
viewHolder.descView.setText(getDesc());
viewHolder.itemView.setEnabled(isEnabled());
viewHolder.titleView.setEnabled(isEnabled());
viewHolder.descView.setEnabled(isEnabled());
viewHolder.rightArrow.setEnabled(isEnabled());
viewHolder.rightArrow.setVisibility(
isExpandable() ? View.VISIBLE : View.INVISIBLE);
// set the dividerLine to INVISIBLE instead of GONE so the content of the line item
// don't need to shift.
viewHolder.dividerLine.setVisibility(
isClickable() && isEnabled() ? View.VISIBLE : View.INVISIBLE);
}
/**
* ViewHolder that contains the elements of a TextLineItem,
* including the title, description, right arrow, and divider line.
*/
public static class ViewHolder extends RecyclerView.ViewHolder {
public final TextView titleView;
public final TextView descView;
final ImageView rightArrow;
public final View dividerLine;
public ViewHolder(View view) {
super(view);
titleView = (TextView) view.findViewById(R.id.title);
descView = (TextView) view.findViewById(R.id.desc);
rightArrow = (ImageView) view.findViewById(R.id.right_chevron);
dividerLine = view.findViewById(R.id.line_item_divider);
}
}
/**
* Creates a ViewHolder that contains the elements of a TextLineItem
*/
public static RecyclerView.ViewHolder createViewHolder(ViewGroup parent) {
return new ViewHolder(LayoutInflater.from(parent.getContext())
.inflate(R.layout.text_line_item, parent, false));
}
}