CollapsingToolbarLayout स्क्रॉल फ़्लिंग को नहीं पहचानता है


93

मैंने एक साधारण CollapsingToolbarLayout बनाया है और यह एक आकर्षण की तरह काम करता है। मेरी समस्या यह है, कि अगर मैं नेस्ट्रोक्रोलव्यू पर फ़्लिंग स्क्रॉल का उपयोग करने की कोशिश करता हूं , तो जब मैं अपनी उंगली को छोड़ता हूं तो यह बस रुक जाता है। सामान्य स्क्रॉलिंग काम करता है जैसे इसे करना चाहिए।

मेरी गतिविधियाँ कोड अपरिवर्तित हैं => स्वतः उत्पन्न खाली गतिविधि। (मैंने अभी-अभी android स्टूडियो में नई खाली गतिविधि बनाने पर क्लिक किया और XML को अभी तक संपादित किया है)।

मैंने यहां पढ़ा, कि इमेजव्यू पर स्क्रॉल इशारे ही छोटी गाड़ी हैं, लेकिन ऐसा नहीं है कि स्क्रॉलिंग ही छोटी गाड़ी है: यहां देखें

मैंने जावा कोड के माध्यम से "चिकनी स्क्रॉलिंग" को सक्रिय करने की कोशिश की । ऐसा लगता है जैसे मैं काफी दूर तक स्क्रॉल करता हूं कि छवि दृश्य अब दिखाई नहीं दे रहा है, इशारों को फिर से पहचाना जाता है।

TLDR: जब तक छवि-दृश्य दिखाई नहीं देता, तब तक इशारे से काम नहीं चलता है? मेरा XML कोड इस तरह दिखता है:

    <android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/profile_app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/profile_collapsing_toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp"
            android:fitsSystemWindows="true">

            <ImageView
                android:id="@+id/image"
                android:layout_width="match_parent"
                android:layout_height="420dp"
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                android:src="@drawable/headerbg"
                android:maxHeight="192dp"

                app:layout_collapseMode="parallax"/>

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:layout_collapseMode="pin" />

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        app:layout_anchor="@id/profile_app_bar_layout"
        app:layout_anchorGravity="bottom|right|end"
        android:layout_height="@dimen/fab_size_normal"
        android:layout_width="@dimen/fab_size_normal"
        app:elevation="2dp"
        app:pressedTranslationZ="12dp"
        android:layout_marginRight="8dp"
        android:layout_marginEnd="8dp"/>

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/profile_content_scroll"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipToPadding="false"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:layout_gravity="fill_vertical"
        android:minHeight="192dp"
        android:overScrollMode="ifContentScrolls"
        >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/LoremIpsum"/>

        </RelativeLayout>

    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

दिलचस्प है, मैंने एक प्रभावित फिंग के दौरान नेस्टेड स्क्रॉल दृश्य पर स्पर्श घटनाओं को लॉग किया। यह हो जाता है ACTION_DOWN y=98 -> ACTION_MOVE y=-40 -> ACTION_MOVE y=-33 -> ACTION_UP y=97। ऐसा लगता है कि अंतिम स्पर्श घटना पहले वाले के रूप में खुद को गलत बता रही है।
जिओ

डिज़ाइन समर्थन लाइब्रेरी के किस संस्करण का आप उपयोग कर रहे हैं?
रादु टोपोर

क्या आप किसी भी स्पर्श की घटनाओं को ओवरराइड कर रहे हैं? nestedScrollView.getParent().requestDisallowInterceptTouchEvent(true);अपने नेस्टेड स्क्रॉल दृश्य पर सेट करने का प्रयास करें
भार्गव

जवाबों:


20

मैं बिल्कुल अंदर ImageView और NestedScrollView के साथ CollapsingToolbarLayout के साथ एक ही मुद्दा था । उंगली छोड़े जाने पर फ्लिंग स्क्रॉल बंद हो जाता है।

हालाँकि, मैंने कुछ अजीब देखा है। यदि आप OnClickListener (उदाहरण के लिए बटन) के साथ अपनी उंगली से स्क्रॉल करना शुरू करते हैं, तो फ़्लिंग स्क्रॉल पूरी तरह से काम करता है।

इस प्रकार मैंने इसे एक अजीब समाधान के साथ तय किया। सेट OnClickListener (कि कुछ नहीं करता है) के प्रत्यक्ष बच्चे पर NestedScrollView । फिर यह पूरी तरह से काम करता है!

<android.support.v4.widget.NestedScrollView 
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   app:layout_behavior="@string/appbar_scrolling_view_behavior">

  <LinearLayout
      android:id="@+id/content_container"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical">

    <!-- Page Content -->

  </LinearLayout>

</android.support.v4.widget.NestedScrollView>

डायरेक्ट बच्चे (LinearLayout) को एक आईडी दें और गतिविधि में OnClickListener सेट करें

ViewGroup mContentContainer = (ViewGroup) findViewById(R.id.content_container);    
mContentContainer.setOnClickListener(this);

@Override
public void onClick(View view) {
    int viewId = view.getId();
}

टिप्पणियाँ:

समर्थन डिजाइन लाइब्रेरी 25.0.1 का उपयोग करके परीक्षण किया गया

स्क्रॉल के साथ CollapsingToolbarLayout = "स्क्रॉल करें। EnterAlwaysCollapsed"


AOSP को इस महान समाधान के साथ पैच किया जाना चाहिए: D
deviant

ज्यादा वोट मिलने चाहिए। Btw इस ने CollapsingToolbarLayout को स्क्रॉल करने के लिए बहुत संवेदनशील बना दिया, लेकिन वर्तमान टूटे हुए व्यवहार से बेहतर।
अहमद फदली

1
यह सच होने के लिए बहुत अच्छा था इसलिए मैंने इसे आज़माया और मेरे लिए काम नहीं किया
गिल्बर्ट मेंडोज़ा

यह सबसे बड़ा समाधान है जो मैंने अब तक SO में आजमाया है।
टेकफिस्ट

: डी महान अवलोकन @jinang !!
श्रीचक्रधर

10

मुझे पता है कि यह सवाल एक साल पहले पूछा गया था, लेकिन यह मुद्दा अभी भी समर्थन / डिज़ाइन पुस्तकालयों में हल नहीं होता है। आप इस समस्या को हल कर सकते हैं इसलिए यह प्राथमिकता कतार में आगे बढ़ता है।

उस ने कहा, मैंने इसके लिए अधिकांश पोस्ट किए गए समाधानों की कोशिश की, जिसमें कोई भी सफलता के साथ पेट्रिक-iv शामिल है। जिस तरह से मैं काम करने में सक्षम था, वह था कि फ़्लिंग की नक़ल करना और उसे प्रोग्रामेटिक रूप से कॉल करना अगर किसी निश्चित परिस्थिति का पता चल जाता onPreNestedScroll()। अपने डिबगिंग के कुछ घंटों में मैंने देखा कि onNestedFling()कभी भी ऊपर की ओर (नीचे स्क्रॉल) फ़्लिंग पर नहीं बुलाया गया था और ऐसा लगता था कि समय से पहले इसका सेवन किया जा रहा है। मैं 100% निश्चितता के साथ यह नहीं कह सकता कि यह 100% कार्यान्वयन के लिए काम करेगा, लेकिन यह मेरे उपयोग के लिए पर्याप्त रूप से काम करता है इसलिए मैंने इसके लिए बसना समाप्त कर दिया, भले ही यह बहुत हैकरी है और निश्चित रूप से वह नहीं है जो मैं करना चाहता था।

public class NestedScrollViewBehavior extends AppBarLayout.Behavior {

    // Lower value means fling action is more easily triggered
    static final int MIN_DY_DELTA = 4;
    // Lower values mean less velocity, higher means higher velocity
    static final int FLING_FACTOR = 20;

    int mTotalDy;
    int mPreviousDy;
    WeakReference<AppBarLayout> mPreScrollChildRef;

    @Override
    public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child,
                                  View target, int dx, int dy, int[] consumed) {
        super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed);
        // Reset the total fling delta distance if the user starts scrolling back up
        if(dy < 0) {
            mTotalDy = 0;
        }
        // Only track move distance if the movement is positive (since the bug is only present
        // in upward flings), equal to the consumed value and the move distance is greater
        // than the minimum difference value
        if(dy > 0 && consumed[1] == dy && MIN_DY_DELTA < Math.abs(mPreviousDy - dy)) {
            mPreScrollChildRef = new WeakReference<>(child);
            mTotalDy += dy * FLING_FACTOR;
        }
        mPreviousDy = dy;
    }

    @Override
    public boolean onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child,
                                       View directTargetChild, View target, int nestedScrollAxes) {
        // Stop any previous fling animations that may be running
        onNestedFling(parent, child, target, 0, 0, false);
        return super.onStartNestedScroll(parent, child, directTargetChild, target, nestedScrollAxes);
    }

    @Override
    public void onStopNestedScroll(CoordinatorLayout parent, AppBarLayout abl, View target) {
        if(mTotalDy > 0 && mPreScrollChildRef != null && mPreScrollChildRef.get() != null) {
            // Programmatically trigger fling if all conditions are met
            onNestedFling(parent, mPreScrollChildRef.get(), target, 0, mTotalDy, false);
            mTotalDy = 0;
            mPreviousDy = 0;
            mPreScrollChildRef = null;
        }
        super.onStopNestedScroll(parent, abl, target);
    }
}

और इसे AppBar पर अप्लाई करें

AppBarLayout scrollView = (AppBarLayout)findViewById(R.id.appbar);
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams)scrollView.getLayoutParams();
params.setBehavior(new NestedScrollViewBehavior());

CheeseSquare डेमो: इससे पहले के बाद


यह वास्तव में कुछ भी नहीं से बेहतर है, लेकिन काफी नहीं एक अनुभवी एंड्रॉइड उपयोगकर्ता क्या उम्मीद करेगा। इस मुद्दे को जोड़ने के लिए धन्यवाद, मैंने इसे तारांकित किया है।
राफेल रॉयर-रिवार्ड

enterAlwaysकाम करने के लिए लेआउट_सक्रोलफ्लैग को हटाना पड़ा , लेकिन अब अच्छी तरह से काम कर रहा है
अलेक्जेंड्रे जी

3

मैंने फ्लोफ़र ​​के समाधान की कोशिश की, लेकिन यह अभी भी मेरे लिए पर्याप्त नहीं था। इसलिए मैं उनके व्यवहार के बेहतर संस्करण के साथ आया। AppBarLayout अब फैलता है और भागते समय आसानी से गिर जाता है।

नोट: मैंने इसमें अपना रास्ता हैक करने के लिए प्रतिबिंब का उपयोग किया, इसलिए यह 25.0.0 से भिन्न एंड्रॉइड डिज़ाइन लाइब्रेरी के संस्करण के साथ पूरी तरह से काम नहीं कर सकता है।

public class SmoothScrollBehavior extends AppBarLayout.Behavior {
    private static final String TAG = "SmoothScrollBehavior";
    //The higher this value is, the faster the user must scroll for the AppBarLayout to collapse by itself
    private static final int SCROLL_SENSIBILITY = 5;
    //The real fling velocity calculation seems complex, in this case it is simplified with a multiplier
    private static final int FLING_VELOCITY_MULTIPLIER = 60;

    private boolean alreadyFlung = false;
    private boolean request = false;
    private boolean expand = false;
    private int velocity = 0;
    private int nestedScrollViewId;

    public SmoothScrollBehavior(int nestedScrollViewId) {
        this.nestedScrollViewId = nestedScrollViewId;
    }

    @Override
    public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child,
                                  View target, int dx, int dy, int[] consumed) {
        super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed);
        if(Math.abs(dy) >= SCROLL_SENSIBILITY) {
            request = true;
            expand = dy < 0;
            velocity = dy * FLING_VELOCITY_MULTIPLIER;
        } else {
            request = false;
        }
    }

    @Override
    public boolean onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child,
                                       View directTargetChild, View target, int nestedScrollAxes) {
        request = false;
        return super.onStartNestedScroll(parent, child, directTargetChild, target, nestedScrollAxes);
    }

    @Override
    public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout appBarLayout, View target) {
        if(request) {
            NestedScrollView nestedScrollView = (NestedScrollView) coordinatorLayout.findViewById(nestedScrollViewId);
            if (expand) {
                //No need to force expand if it is already ready expanding
                if (nestedScrollView.getScrollY() > 0) {
                    int finalY = getPredictedScrollY(nestedScrollView);
                    if (finalY <= 0) {
                        //since onNestedFling does not work to expand the AppBarLayout, we need to manually expand it
                        expandAppBarLayoutWithVelocity(coordinatorLayout, appBarLayout, velocity);
                    }
                }
            } else {
                //onNestedFling will collapse the AppBarLayout with an animation time relative to the velocity
                onNestedFling(coordinatorLayout, appBarLayout, target, 0, velocity, true);

                if(!alreadyFlung) {
                    //TODO wait for AppBarLayout to be collapsed before scrolling for even smoother visual
                    nestedScrollView.fling(velocity);
                }
            }
        }
        alreadyFlung = false;
        super.onStopNestedScroll(coordinatorLayout, appBarLayout, target);
    }

    private int getPredictedScrollY(NestedScrollView nestedScrollView) {
        int finalY = 0;
        try {
            //With reflection, we can get the ScrollerCompat from the NestedScrollView to predict where the scroll will end
            Field scrollerField = nestedScrollView.getClass().getDeclaredField("mScroller");
            scrollerField.setAccessible(true);
            Object object = scrollerField.get(nestedScrollView);
            ScrollerCompat scrollerCompat = (ScrollerCompat) object;
            finalY = scrollerCompat.getFinalY();
        } catch (Exception e ) {
            e.printStackTrace();
            //If the reflection fails, it will return 0, which means the scroll has reached top
            Log.e(TAG, "Failed to get mScroller field from NestedScrollView through reflection. Will assume that the scroll reached the top.");
        }
        return finalY;
    }

    private void expandAppBarLayoutWithVelocity(CoordinatorLayout coordinatorLayout, AppBarLayout appBarLayout, float velocity) {
        try {
            //With reflection, we can call the private method of Behavior that expands the AppBarLayout with specified velocity
            Method animateOffsetTo = getClass().getSuperclass().getDeclaredMethod("animateOffsetTo", CoordinatorLayout.class, AppBarLayout.class, int.class, float.class);
            animateOffsetTo.setAccessible(true);
            animateOffsetTo.invoke(this, coordinatorLayout, appBarLayout, 0, velocity);
        } catch (Exception e) {
            e.printStackTrace();
            //If the reflection fails, we fall back to the public method setExpanded that expands the AppBarLayout with a fixed velocity
            Log.e(TAG, "Failed to get animateOffsetTo method from AppBarLayout.Behavior through reflection. Falling back to setExpanded.");
            appBarLayout.setExpanded(true, true);
        }
    }

    @Override
    public boolean onNestedPreFling(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, float velocityX, float velocityY) {
        alreadyFlung = true;
        return super.onNestedPreFling(coordinatorLayout, child, target, velocityX, velocityY);
    }
}

इसका उपयोग करने के लिए, अपने AppBarLayout में एक नया व्यवहार सेट करें।

AppBarLayout appBarLayout = (AppBarLayout) findViewById(R.id.app_bar);
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) appBarLayout.getLayoutParams();
params.setBehavior(new SmoothScrollBehavior(R.id.nested_scroll_view));

आपकी कक्षा अपने 'कंस्ट्रक्टर' में एक इंट की मांग करती है, फिर भी कोड में आप कंस्ट्रक्टर को कुछ भी नहीं भेजते हैं
ब्लूज़मर्स

मेरा बुरा, मैंने इसे जोड़ा।
राफेल रॉयर-रिवार्ड

यह अच्छा लग रहा है, यह स्क्रॉलिंग को सुचारू बनाता है, लेकिन मेरा एक सवाल है, क्या AppBarLayout के शीर्ष पर पहुंचने के बाद, NestedScrollView को AppBarLayout में स्क्रॉल करना संभव है, और जब मैं नीचे स्क्रॉल करता हूं, तो Appararayayout अंतिम पर दिखाई देता है, जब NestedScrollView पूरी तरह से बाहर स्क्रॉल, तो AppBarLayout का विस्तार करने के लिए शुरू करते हैं।
ज़िजियन वांग

@ZijianWang कृपया मुझे समझाएं कि "AppBarLayout में स्क्रॉल करें" से मेरा क्या मतलब है और मुझे आपका दूसरा सवाल भी समझ में नहीं आ रहा है, क्या आप इसे रीफ़्रेज़ कर सकते हैं?
राफेल रॉयर-रिवार्ड

0

इस जवाब ने मेरे लिए इस समस्या को हल कर दिया। AppBarLayout.Behaviorइस तरह एक कस्टम बनाएँ :

public final class FlingBehavior extends AppBarLayout.Behavior {
    private static final int TOP_CHILD_FLING_THRESHOLD = 3;
    private boolean isPositive;

    public FlingBehavior() {
    }

    public FlingBehavior(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public boolean onNestedFling(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, float velocityX, float velocityY, boolean consumed) {
        if (velocityY > 0 && !isPositive || velocityY < 0 && isPositive) {
            velocityY = velocityY * -1;
        }
        if (target instanceof RecyclerView && velocityY < 0) {
            final RecyclerView recyclerView = (RecyclerView) target;
            final View firstChild = recyclerView.getChildAt(0);
            final int childAdapterPosition = recyclerView.getChildAdapterPosition(firstChild);
            consumed = childAdapterPosition > TOP_CHILD_FLING_THRESHOLD;
        }
        return super.onNestedFling(coordinatorLayout, child, target, velocityX, velocityY, consumed);
    }

    @Override
    public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dx, int dy, int[] consumed) {
        super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed);
        isPositive = dy > 0;
    }
}

और इसे AppBarLayoutइस तरह से जोड़ें :

<android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        ...
        app:layout_behavior="com.example.test.FlingBehavior">

1
अन्य प्रश्न में समस्या के रूप में काम नहीं किया RecyclerView जो यहाँ इस्तेमाल नहीं किया है।
फेलिक्स एडेलमैन

0

मैं इसे यहाँ पोस्ट कर रहा हूँ ताकि अन्य लोग इसे कमेंट्स में न चूकें। जिनंग का जवाब खूबसूरती से काम करता है, लेकिन एंटापाचॉन के लिए कुडोस उसी के लिए एक बहुत सरल तरीका बताते हैं। प्रोग्राम OnClickपर एक विधि को लागू करने के बजाय , बच्चे के लिए xml में Child of the NestedScrollViewसेट करने का एक बेहतर तरीका है clickable=true

( जिनांग के रूप में एक ही उदाहरण का उपयोग करना )

<android.support.v4.widget.NestedScrollView 
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   app:layout_behavior="@string/appbar_scrolling_view_behavior">

  <LinearLayout
      android:id="@+id/content_container"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical"
      android:clickable="true" >                  <!-- new -->

    <!-- Page Content -->

  </LinearLayout>

</android.support.v4.widget.NestedScrollView>

-1

कोड में the https://android.googlesource.com/platform/frameworks/support/+/master/core-ui/java/android/support/v4/widget/NestedScrollView.java#834

       case MotionEvent.ACTION_UP:
            if (mIsBeingDragged) {
                final VelocityTracker velocityTracker = mVelocityTracker;
                velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
                int initialVelocity = (int) VelocityTrackerCompat.getYVelocity(velocityTracker,
                        mActivePointerId);
                if ((Math.abs(initialVelocity) > mMinimumVelocity)) {
                    flingWithNestedDispatch(-initialVelocity);
                } else if (mScroller.springBack(getScrollX(), getScrollY(), 0, 0, 0,
                        getScrollRange())) {
                    ViewCompat.postInvalidateOnAnimation(this);
                }
            }
            mActivePointerId = INVALID_POINTER;
            endDrag();
            break;

जब मैं NestedScrollView पर कभी-कभी "mIsBeingDragged = false" पर एक फ़्लिंग स्क्रॉल का उपयोग करता हूं, तो NestedScrollView फ़्लिंग ईवेंट को न भेजें।

जब मैं if (mIsBeingDragged)स्टेटमेंट डिलीट करता हूं

 case MotionEvent.ACTION_UP:
        //if (mIsBeingDragged) {
            final VelocityTracker velocityTracker = mVelocityTracker;
            velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
            int initialVelocity = (int) VelocityTrackerCompat.getYVelocity(velocityTracker,
                    mActivePointerId);
            if ((Math.abs(initialVelocity) > mMinimumVelocity)) {
                flingWithNestedDispatch(-initialVelocity);
            } else if (mScroller.springBack(getScrollX(), getScrollY(), 0, 0, 0,
                    getScrollRange())) {
                ViewCompat.postInvalidateOnAnimation(this);
            }
        //}
        mActivePointerId = INVALID_POINTER;
        endDrag();
        break;

कोई दिक्कत नहीं होगी। लेकिन मुझे नहीं पता कि अन्य गंभीर समस्याएं क्या होंगी


जोड़ें और अधिक विस्तार के लिए आसान समझने के लिए इस सवाल का जवाब करने के लिए, आप ने लिखा है जब मैं निकाल देते हैं ... जहां से आप निकालना बात कर रहे हैं , तो ?
देवेन्द्र सिंह
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.