addView添加了视图,但它没有显示它

时间:2016-10-02 20:44:13

标签: java android android-studio

我知道这已经被问到了,但我尝试了一切,但我无法解决我的问题。

当我以编程方式创建这些视图时,它们肯定会被添加,我在调试器中检查并且一切都在它的位置,即使父视图的高度也因为它们正在使用空间而变得更大。但是我看不到它们,就像它们低于其他视图或看不见(但它们不是,我多次检查过......)。

enter image description here

这是我试图插入视图的xml代码,我想将它们插入光标所在的位置(标记信息的位置)。我只是在那里向你展示它最终会是什么样子,但是这部分将以编程方式添加。

<LinearLayout
            android:id="@+id/llhTestItem"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="6dp"
            android:orientation="horizontal">

            <TextView
                    android:id="@+id/tvInformationTitle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="17sp"
                    fontPath="fonts/OpenSans-Regular.ttf"
                    android:text="Sub title: "/> <!-- tvInformationTitle -->

            <TextView
                    android:id="@+id/tvInformation"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="16sp"
                    fontPath="fonts/OpenSans-Light.ttf"
                    android:text="information"/> <!-- tvInformation -->

        </LinearLayout> <!-- information -->

下面你可以看到我用来添加视图的代码,就像上面的xml一样。

@Override
public void onBindViewHolder(SetupViewerHolder holder, int position) {
    CardViewItem cardViewItem = cardViewItemList.get(position);
    holder.tvTitle.setText(cardViewItem.getCardTitle());
    for (int i = 0; i < cardViewItem.getInformationList().size(); i++){

        //region Create llhItem
        LinearLayout.LayoutParams llhItemParams = new LinearLayout.LayoutParams(
                ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.WRAP_CONTENT);
        llhItemParams.topMargin = dipToPixels(6);

        LinearLayout llhItem = new LinearLayout(context);
        llhItem.setLayoutParams(llhItemParams);
        llhItem.setOrientation(LinearLayout.HORIZONTAL);
        //endregion

        LinearLayout.LayoutParams tvInformationsParams = new LinearLayout.LayoutParams(
                ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.WRAP_CONTENT);
        //region Create tvInformationTitle
        TextView tvInformationTitle = new TextView(context);
        tvInformationTitle.setLayoutParams(tvInformationsParams);
        tvInformationTitle.setTextSize(TypedValue.COMPLEX_UNIT_SP, 17);
        if (Build.VERSION.SDK_INT < 23){
            tvInformationTitle.setTextAppearance(context, R.style.OpenSansRegular);
        } else {
            tvInformationTitle.setTextAppearance(R.style.OpenSansRegular);
        }
        tvInformationTitle.setText(cardViewItem.getInformationList().get(i)[0]);
        //endregion

        //region Create tvInformation
        TextView tvInformation = new TextView(context);
        tvInformation.setLayoutParams(tvInformationsParams);
        tvInformation.setTextSize(TypedValue.COMPLEX_UNIT_SP, 16);
        if (Build.VERSION.SDK_INT < 23){
            tvInformation.setTextAppearance(context, R.style.OpenSansLight);
        } else {
            tvInformation.setTextAppearance(R.style.OpenSansLight);
        }
        tvInformation.setText(cardViewItem.getInformationList().get(i)[1]);
        //endregion

        llhItem.addView(tvInformationTitle);
        llhItem.addView(tvInformation);

        holder.llvInformation.addView(llhItem);
    }

基本上我想要实现的是拥有一个回收者视图,每个项目只有一个标题,一个溢出按钮,但可以有多个信息行。 这是一个打印,我以前用xml硬编码为原型。

enter image description here

我知道一些替代方法可能会有效,但是现在我想这样做,因为一切都像它应该的那样,视图只是“不可见”。

1 个答案:

答案 0 :(得分:1)

添加视图后,您是否尝试过调用invalidate()?像这样:

holder.llvInformation.addView(llhItem);
holder.llvInformation.invalidate();