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) Getting Started with Android Introducing Android and Java

hello i did an account but i want to pay for tree house but unfortunate my country dosnt have postal code

so in my country i dont have postal code or zip code im using master card i try to buy bitcoin but its also not available in my country,i try to send for the team help but they told my they will reply soon tell now i dont now a way to pay for tree house and join them not as a free tail account ,is their anyway to pay for them or any account number to transfer the money from my countery to them it try to see many way but their is no answer ,help

4 Answers

This is tricky, I checked it online and indeed certain countries do not have/use postal codes, in that case maybe they can code a postal code opt - out for those countries? I'm not sure of that however I believe support are more likely to help you find a way out, so hopefully they'll get back to you soon. From my research there are also countries that have a single postal code, in that case make sure to check if your country has a single postal code or actually has none. You can check here - Universal Postal Union | General Addressing Issues.

hello ,tank u for helping but ,it dose not work , i try different area postal code put they keep me the same message , i there a way to pay for them ?an account number or sth like that to reach tree house ? second can they help me in my postal code of Lebanon ? .... thank u again

I suggest you contact a local post office and ask them as they might be able to tell you what your post code is. This PDF is a good reference of how a Lebanese post code looks like.

the sdk in not opeing on android studio what can i do ?

I'm not sure about that. Does it give you any error? If yes then post it here.

hello i have a challange to

./FunFactsActivity.java:16: error: cannot find symbol Button factButton = (Button) findViewById(R.id.showfactButton); what dose it mean ? how can i solve it ?

@Override public 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   factButton = (Button) findViewById(R.id.showfactButton);
}

}

they are asking to initializing the Showfactbutton who can i do it and they said use button? help

Initialize the showFactButton variable using the findViewById() method like the TextView above it. The ID for the button is showFactButton, and don't forget to cast it to a Button with (Button)!

I think your problem is it is case sensitive ... use "showFactButton" and not "showfactButton".

tank u it works