View does not Visible if it has nothing to show how?
I have a view for ads in my application .
开发者_JAVA百科
if my application has no ads to show then the View must not be visible (no blank space). how can i do that ??????????
Thanks in advance for your valuable time time
Regards, Kariyachan.
yourView.setVisibility(View.GONE) or yourView.setVisibility(View.INVISIBLE)
精彩评论