【发布时间】:2016-02-26 19:00:31
【问题描述】:
在这里,我有一个视图分页器,它由多个片段共享,这些片段都包含在一个 TABLayout 中,如下所示
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#006699"
android:titleTextColor="#FFFFFF"
app:popupTheme="@style/AppTheme.PopupOverlay" />
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar"
android:background="#006699"
android:elevation="6dp"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@id/tab_layout"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/order_icon"
android:layout_width="59dp"
android:layout_height="59dp"
android:visibility="visible"
android:layout_gravity="right|bottom"
app:layout_anchor="@id/pager"
app:layout_anchorGravity="bottom|right|end"
android:src="@drawable/order_icon"
android:layout_alignBottom="@+id/pager"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>
FAB 由所有片段共享。我想在 FAB 上添加一个 onLongClicklistener,通过它我可以将按钮拖到布局上(包括 viewPager)。 我已经使用 onTouchListener 和 MotionEvent 对象完成了上述任务。 但是,我无法使用拖放 API 执行此操作(释放拖动的按钮后,按钮消失)。
代码如下:
orderIcon = (FloatingActionButton)findViewById(R.id.order_icon);
orderIcon.setTag(IMAGEVIEW_TAG);
// Sets a long click listener for the ImageView
orderIcon.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
ClipData.Item item = new ClipData.Item((CharSequence) v
.getTag());
String[] mimeTypes = { ClipDescription.MIMETYPE_TEXT_PLAIN };
ClipData clipData = ClipData.newPlainText("", "");
View.DragShadowBuilder myShadow = new View.DragShadowBuilder(view);
// Starts the drag
v.startDrag(clipData,myShadow,null,0);
return true;
}
});
orderIcon.setOnDragListener(new View.OnDragListener() {
@SuppressLint("NewApi")
@Override
public boolean onDrag(View v, DragEvent event) {
switch (event.getAction()) {
case DragEvent.ACTION_DRAG_STARTED:
owner = (ViewGroup) v.getParent();
owner.removeView(v);
Log.d(msg, "Action is DragEvent.ACTION_DRAG_STARTED");
break;
case DragEvent.ACTION_DRAG_ENTERED:
Log.d(msg, "Action is DragEvent.ACTION_DRAG_ENTERED");
float x = (int) event.getX();
float y = (int) event.getY();
break;
case DragEvent.ACTION_DRAG_EXITED:
Log.d(msg, "Action is DragEvent.ACTION_DRAG_EXITED");
x = (float) event.getX();
y = (float) event.getY();
v.setX(x);
v.setY(y);
owner.addView(v);
v.setVisibility(View.VISIBLE);
break;
case DragEvent.ACTION_DRAG_LOCATION:
Log.d(msg, "Action is DragEvent.ACTION_DRAG_LOCATION");
break;
case DragEvent.ACTION_DRAG_ENDED:
Log.d(msg, "Action is DragEvent.ACTION_DRAG_ENDED");
break;
case DragEvent.ACTION_DROP:
Log.d(msg, "ACTION_DROP event");
break;
default:
break;
}
return true;
}
});
我们将不胜感激。提前谢谢你。
【问题讨论】:
标签: android android-fragments android-viewpager floating-action-button onlongclicklistener