我需要显示视图,该视图也可以拖动到屏幕上所需的位置。这个视图可以作为叠加层拖动到其他视图的顶部。如何实现这一点。我的布局可能如下所示
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/image1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageView
android:id="@+id/image2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<org.example.MyCustomDrabaleView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
实际上,我正在尝试构建一个示例库项目,开发人员可以在其中使用我的 MyCustomDrabaleView 视图并在他们的视图上拖动。我对如何获取 MyCustomDrabaleView 的触摸事件感到震惊,这样当它被拖动时,我可以将其视图更新为新的位置。