DraggablePanel
DraggablePanel copied to clipboard
Draggable Panel stuck in between while transition from Maximize to Minimise and vice versa
Hi Pedrovgs,
I am using DraggablePanel for a Video Application and it got stuck sometimes from transitioning maximise and minimise states.
Please let me know if i could modify any logic to fix this.
Thanks !!
I have the same question too, I would also like to know how to fix it, thanks.
can you upload a video showing this problem?
bump!
I also got similar problem,, the top view on minimization sometimes does not minimize to fullest. This is my draggableview xml:
`<com.github.pedrovgs.DraggableView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:draggable_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/draggable_view"
android:background="@color/card_Bg"
draggable_view:enable_minimized_horizontal_alpha_effect="true"
draggable_view:top_view_id="@+id/drag_ll_top_slider"
draggable_view:bottom_view_id="@+id/drag_ll_details"
android:theme="@style/android:Theme.NoTitleBar"
draggable_view:top_view_x_scale_factor="1.2"
draggable_view:top_view_y_scale_factor="1.2"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--Bottom View-->
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drag_ll_details"
android:background="@color/bmb_seller_details"
android:layout_below="@+id/drag_ll_top_slider">
</LinearLayout>
<!--Top View-->
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drag_ll_top_slider"
android:layout_alignParentTop="true">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/recyclerview_slide" />
</LinearLayout>
</com.github.pedrovgs.DraggableView>`
Below are the screen shot.