我在main.xml中设置了一个
ImageView,如果我想从我的View类访问它并使其可见= false,我该如何以编程方式执行此操作?
谢谢
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); theView = new GameView(this); theView.setBackgroundResource(R.layout.main); setContentView(theView);
解决方法
例如,在布局xml文件中,有一个imageview1
<ImageView android:id="@+id/imageview1" android:layout_gravity="center" android:layout_width="fill_parent" android:layout_height="fill_parent" />
在你的java src中,
ImageView img=(ImageView)findViewById(R.id.imageview1); img.setVisibility(View.GONE); img.setVisibility(View.VISIBLE); img.setVisibility(View.INVISIBLE);
你可以谷歌View.Gone和View.VISIBLE之间的区别