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 Build a Simple Android App (2014) Basic Android Programming Accessing Views in Code

TextView

my TextView and button under the declare our view variables and assign the views from the layout files are in red text color. The words themselves i.e "TextView" and "Button" are the ones in red text.

2 Answers

Daniel Hartin
Daniel Hartin
18,106 Points

Hi Sandra

I suspect you have not implemented the TextView and Button classes into your class. Pressing Alt + Enter together when highlighting the red underlined code should import the class for you, alternatively copy and paste the lines of code below into your java class.

import android.widget.Button;
import android.widget.TextView;

These should go right at the top of the page

Hope the helps

Daniel

I think you should write it in capital case: FactTextView and ShowFactButton

TextView factLabel = (TextView) findViewById(R.id.FactTextView); Button showFactButton = (Button) findViewById(R.id.ShowFactButton);