用 LinearLayout 设置屏幕外的 ImageView
我正在开发一个 Android 2.2 应用程序。
我有一个带有文本视图、按钮和图像视图的线性布局。
我想将此图像视图设置在屏幕之外,并设置动画以将其从左向右移动。
我想模拟一艘从左向右移动的船。用户将看到它从屏幕左侧出现并从右侧消失。
我知道我可以使用 AbsoluteLayout 为 ImageView 设置layout_x,但我不想为其他视图(textview 和button)设置layout_x 和layout_y,因为它们在屏幕上居中。
I'm developing an Android 2.2 application.
I have a linearlayout with a textview, a button and an ImageView.
I want to set this imageview outside of the screen and set an animation to move it from left to right.
I want to simulate a ship moving from left to right. The user will see it appears from left side of the screen and disappears from right side.
I know I can use AbsoluteLayout to set a layout_x for ImageView, but I don't want to set layout_x and layout_y for the others views (textview and button), because they are centred on the screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我解决问题的方法:
This is how I have solved my problem: