Kindda奇怪的情况......
我有一个ImageView,它有一个与之关联的点击互动。
在代码中,我通过动画更改ImageView的位置。
但是当动画结束时,可点击区域仍然在ImageView的原始位置(我实际上可以点击该区域并看到正在处理的点击)。
做过一些研究,似乎动画只会移动视图像素,视图仍然保留原来的位置。
对Android有点批评 - 这不是一个直观的设计/实现。这不符合“所见即所得”标准。
我的问题是
有没有办法(除了在两个不同的ImageView之间切换)以使可点击区域移动到视图像素所在的位置?
我的布局和动画xml结构如下。
布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/keywords_layer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_margin="0dp"
android:padding="0dp"
android:orientation="vertical"
android:visibility="gone"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="35dp"
>
<ImageView
android:layout_width="fill_parent"
android:layout_height="35dp"
android:layout_centerInParent="true"
android:adjustViewBounds="false"
android:scaleType="fitXY"
android:src="@drawable/keyword_bar_handle"
/>
<ImageView
android:id="@+id/bar_handle"
android:layout_width="45dp"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:adjustViewBounds="false"
android:scaleType="fitXY"
/>
</RelativeLayout>
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="@dimen/browser_address_bar_1_5_height"
android:layout_margin="0dp"
android:padding="0dp"
android:background="@drawable/keyword_bar_bg"
android:scrollbars="none"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="@dimen/browser_address_bar_1_5_height"
android:layout_margin="0dp"
android:padding="0dp"
/>
</HorizontalScrollView>
动画:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator"
android:fillEnabled="true"
android:fillAfter="true">
<translate
android:fromYDelta="60"
android:toYDelta="0"
android:duration="300"
/>
</set>
在这里,布局与屏幕底部对齐,需要平滑切换 - 隐藏或显示。 “bar_handle”ImageView处理切换。 “bar_handle”位于动画结构内部,因此随之移动。
感谢您的帮助。
答案 0 :(得分:2)
视图动画不会改变视图的实际位置,因此如果您想真正改变位置,请尝试自己滚动
例如: 使用scrollTo,scrollBy或如果你想自动滚动,你可以使用滚动来帮助你做到这一点。