Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Adit Doshi
2,142 Pointshow to make a new class
where to intitate new class
public class MainActivity extends Activity {
final TwitterClient twitterClient = new TwitterClient();
@Override
public void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
Runnable r = new Runnable() {
@Override
public void run() {
twitterClient.update();
}
};
Thread t = new Thread(r);
t.setName("TwitterThread");
t.start();
}
}
1 Answer

samuel zaffran
24,815 PointsWhat your question is about ? In general or is it a test in treehouse ? I can see only two choices or you creater an inner class (a class in a class) or you have to create a new class by creating a new java file... it depends what you're looking for and where you're coding !