Hey, I implement a drag and drop function, but this does not allow me to delete the image when switching to another view

Chat function with drag and drop function

 LayoutInflater layoutInflater = (LayoutInflater) this
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View mDeleteZone = layoutInflater.inflate(R.layout.delete_zone, null);
        mDeleteZone.setOnDragListener(this);
+4
source share

Source: https://habr.com/ru/post/1589171/


All Articles