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 trialJoshua Philips
6,631 PointsAndroid Studio Issue
I am in Android Studio, and I am having an issue with this line of code:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fun_facts);
// Declare our view variables and assign them the views from the layout file
TextView factlabel = (TextView) findViewById(R.id.FactTextView);
Button showFactButton = (Button) findViewById(R.id.showFactButton);
}
Both 'Button' are red.
1 Answer
Steve Hunter
57,712 PointsHi Joshua,
At the top of your file, do you have the line:
import android.widget.Button;
That will include the Button class in your project. In the videos, it is probably referred to as "organising imports". There will be a keyboard shortcut to do it too.
Give that a go and let me know how you get on.
Steve.