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 trialRize Liu
23,482 PointscircleImageView 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?
2 Answers
Gonçalo Palma
9,121 PointsIn 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
23,482 PointsIt really helped. Thank you so much!!
Sana Khateeb
3,979 PointsFor me, this same issue was fixed by looking at this discussion post and looking through Rober Dandy's answer.
Valentin Famelart
19,190 PointsThanks! Had the same, never realized that I used srcCompat (thank you GUI ...)
Sana Khateeb
3,979 PointsSana Khateeb
3,979 PointsHaving the same issue, please reply if you found the answer