android view 的 setVisibility(int visibility)的参数

转载自:http://pure.iteye.com/blog/1088130

android view的setVisibility方法值的意思

有三个值 visibility  One of VISIBLE, INVISIBLE, or GONE.

常量值为0,意思是可见的
常量值为4,意思是不可见的
常量值为8,意思是不可见的,而且不占用布局空间

你可能感兴趣的:(android)