我想在启动画面上制作动画背景。如何在屏幕上滚动图像。
我目前正在使用动画
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="10000"
android:toXDelta="100%p"
android:fromXDelta="0" />
</set>
问题是图像大小当前设置为填充父级,因此在滚动时我可以看到图像的边框。是否可以使图像的大小大于父级大小。这样我仍然可以让它滚动,而不会看到边框。