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 trialLuke Kim
482 PointsThe R class is not working
package com.example.overmind.funfacts;
import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.Button; import android.widget.TextView;
public class FunFactsActivity extends AppCompatActivity { // Declare our View variables private TextView mFactTextView; private Button mShowFactButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fun_facts);
// Assign the Views from the layout file to the corresponding variables
mFactTextView = findViewById(R.)
}
} In the R.layout_fun_facts); is giving me an error with the "R". it says that it cannot find symbol and I cannot find the class. Please help thanks.
2 Answers
Ken Alger
Treehouse TeacherLuke;
Try doing a Gradle clean and Gradle build, that typically does the trick for me in these instances.
Click on Build->Clean Project and that will perform a gradle clean.
Post back if you're still stuck.
Happy coding,
Ken
Morten Olstad
301 Pointshave the same problem. cant even find the generated r class from the project
Luke Kim
482 PointsLuke Kim
482 PointsIt still doesnt work