I'm trying to learn how to develop Android using the Eclipse IDE. What I'm trying to do right now is make a hidden TableLayout visible when a button is pressed. However, I have no idea as to what I need to put in the button's OnClick property.
Also, are there any tutorials online that could help me learn how to develop Android apps in Eclipse?
Thanks!
TableLayout tl = (TableLayout)findeViewById(R.id.yourtablelayout);
tl.setVisibility(View.VISIBLE);
Something like that within your onClick()
method should do the trick.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With