Android TextView未显示

时间:2014-11-26 00:57:30

标签: android expandablelistview custom-adapter

我已经调试过,一切都很顺利;而且,在图形布局中一切都很好。在这里你可以看到代码:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="5dp"
    android:paddingBottom="10dp"
    android:background="@color/white" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="70dp"
        android:layout_height="70dp"
        android:layout_marginStart="5dp"
        android:src="@drawable/news_img1" />

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        android:layout_alignParentTop="true"
        android:layout_toEndOf="@id/image"
        android:text="Pizza Rondon"
        android:textSize="16sp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/description"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/title"
        android:layout_marginEnd="10dp"
        android:layout_marginStart="10dp"
        android:layout_toEndOf="@id/image"
        android:text="Ingredients: meat, potato, tomato, salad included too. " />

    <TextView
        android:id="@+id/price"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginEnd="20dp"
        android:text="60 Lei"
        android:textColor="@color/dimmed_red"
        android:textStyle="bold" />
</RelativeLayout>

以下是结果,因为此视图是来自ExpandableListView的项目:

enter image description here

我没有在customAdapter中将任何数据设置为TextViews。什么可能导致TextView消失?我甚至看不到价格和其他两个未显示的差异,这在布局上没有太大差别。

1 个答案:

答案 0 :(得分:4)

您是否尝试更改文字颜色 - 可能是设置为白色???价格显示是因为android:textColor =“@ color / dimmed_red”