Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Android Lists and Adapters (2015) Using Parcelable Data Updating the Daily Forecast UI

Rize Liu
Rize Liu
23,482 Points

circleImageView does not appear

When I touch the DAILY button, the circle image view and the temperature label do not show up. If I delete the circle image view in the xml layout file, the temperature number appears. I do not know what is going on. Why is it happening?

Sana Khateeb
Sana Khateeb
3,979 Points

Having the same issue, please reply if you found the answer

2 Answers

Gonçalo Palma
Gonçalo Palma
9,121 Points

In my case it was the following:

I had for the temperature label

app:srcCompat="@drawable/bg_temperature"

But you have to use:

android:src="@drawable/bg_temperature"

If all else fails, this is on the xml file provided by the teacher:

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/circleImageView"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:src="@drawable/bg_temperature"/>

    <TextView
        android:id="@+id/temperatureLabel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@id/circleImageView"
        android:layout_alignRight="@id/circleImageView"
        android:layout_alignTop="@id/circleImageView"
        android:layout_alignBottom="@id/circleImageView"
        android:gravity="center"
        android:textColor="#f25019"
        android:textSize="20sp"
        tools:text="55"
        />
Rize Liu
Rize Liu
23,482 Points

It really helped. Thank you so much!!

Sana Khateeb
Sana Khateeb
3,979 Points

For me, this same issue was fixed by looking at this discussion post and looking through Rober Dandy's answer.

Thanks! Had the same, never realized that I used srcCompat (thank you GUI ...)