Android TV ImageCardView标题包装

时间:2017-01-24 16:25:40

标签: java android android-tv

我正在为Android TV开发app并使用leanback库。

来自Google的example他们正在使用public class CardPresenter extends Presenter来显示内容。问题是,我想在标题中显示所有文本,即不要删除它。

enter image description here

我已经尝试过:

1)通过以编程方式设置LayoutParams来解决此问题:cardView.findViewById(R.id.title_text).setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT));

2)我查看了ImageCard的lb_image_card_view.xml文件。有趣的时刻,那个带有id" title_text"的TextView已经有android:layout_height="wrap_content"参数,但看起来它不起作用?这是一个错误吗?

3)对于备份计划,我可以为ImageCardView创建自己的类,但这个解决方案看起来很难。

THX。

更新

我使用了下面的答案,但我需要修改代码以获得更好的性能:

cardView.setOnFocusChangeListener((view, isFocused) -> {
        if (isFocused) {
            ((TextView) cardView.findViewById(R.id.title_text)).setMaxLines(5);
        }
        else {
            ((TextView) cardView.findViewById(R.id.title_text)).setMaxLines(1);
        }
    });

1 个答案:

答案 0 :(得分:2)

如果可以帮助您,请尝试检查此tutorial。它可以帮助您显示或显示标题中的所有文本。

以下是本教程的代码用法

@Override
public ViewHolder onCreateViewHolder(ViewGroup parent) {
    final ImageCardView cardView = new ImageCardView(mContext);    

    cardView.setOnFocusChangeListener(new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View view, final boolean isFocused) {
            final View infoField = view.findViewById(R.id.info_field);
            final TextView contentField = (TextView)view.findViewById(R.id.content_text);
            final TextView titleField = (TextView)view.findViewById(R.id.title_text);
            final Drawable mainImage = ((ImageView)view.findViewById(R.id.main_image)).getDrawable();

            if (isFocused) {
                ((TextView)cardView.findViewById(R.id.title_text)).setMaxLines(3);
                FrameLayout.LayoutParams infoLayout = new FrameLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
                infoField.setLayoutParams(infoLayout);
                RelativeLayout.LayoutParams contentLayout = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
                contentLayout.addRule(RelativeLayout.BELOW, R.id.title_text);
                contentField.setLayoutParams(contentLayout);
            }
            else {
                ((TextView)cardView.findViewById(R.id.title_text)).setMaxLines(1);
            }
        }
    });

    cardView.setFocusable(true);
    cardView.setFocusableInTouchMode(true);
    cardView.setBackgroundColor(mContext.getResources().getColor(R.color.fastlane_background));
    return new ViewHolder(cardView);
}

以下是此代码的输出。

enter image description here

有关详情,请同时查看此thread