开发者

How can I send an ImageView to the back?

I have an ImageView开发者_如何学Go in my Android application. Currently it's in front of the view. I want to send it to the back. How can I do this?


You can make your ImageView's visibility as gone so that it will hide and you can make it as visible whenever you want.

imageView.SetVisibility(8);  //Gone
imageView.SetVisibility(0);  //Visible
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜