Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to drag and drop ViewFlipper and their childview. Drag and drop is working on ImageView, button and not in ViewFlipper. By using Page indicator I'll select ViewFlipper child s. The code is shown below

XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:background="#000000">



<ViewFlipper
  android:id="@+id/IDLayout"
    android:layout_width="200dip"
    android:layout_height="200dip" 
    >
<Button
       android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:text="Button">
</Button>
</ViewFlipper>

</RelativeLayout>

Java

ViewFlipper rLayout = (ViewFlipper)findViewById(R.id.IDLayout);
rLayout.setOnTouchListener(new OnTouchListener() {

        public boolean onTouch(View v, MotionEvent event) {
            // TODO Auto-generated method stub

RelativeLayout.LayoutParams params = (android.widget.RelativeLayout.LayoutParams) v.getLayoutParams();

    switch(event.getAction())
    {
       case MotionEvent.ACTION_MOVE:
       {
         params.topMargin = (int)event.getRawY() - (v.getHeight());
         params.leftMargin = (int)event.getRawX() - (v.getWidth()/2);
         v.setLayoutParams(params);
         break;
       }
       case MotionEvent.ACTION_UP:
       {
         params.topMargin = (int)event.getRawY() - (v.getHeight());
         params.leftMargin = (int)event.getRawX() - (v.getWidth()/2);
         v.setLayoutParams(params);
         break;
       }
       case MotionEvent.ACTION_DOWN:
       {
        v.setLayoutParams(params);
        break;
       }
    }
            return false;
        }
});

can anyone help me.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.