DraggablePanel icon indicating copy to clipboard operation
DraggablePanel copied to clipboard

Draggable Panel stuck in between while transition from Maximize to Minimise and vice versa

Open Amritpal33 opened this issue 10 years ago • 4 comments

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 !!

Amritpal33 avatar Dec 16 '14 14:12 Amritpal33

I have the same question too, I would also like to know how to fix it, thanks.

xiaojianan avatar Dec 17 '14 02:12 xiaojianan

can you upload a video showing this problem?

Fiddl3 avatar Dec 17 '14 07:12 Fiddl3

bump!

pedrovgs avatar Jan 18 '15 16:01 pedrovgs

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. screenshot_2017-02-24-21-52-27-424_com example berry sellerapp screenshot_2017-02-24-21-52-10-777_com example berry sellerapp

coderbhupendra avatar Feb 24 '17 16:02 coderbhupendra