How does one drag an image form one layout to another layout
-
How does one drag an image from one layout to another layout. I am attaching what i have done so far. I have two layouts in a single view. I can move the image on its initial layout. But the problem is i cant move the image to a different layout. Please help me find the solution to this problem. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1"> <ImageView android:id="@+id/imageView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/icon" android:scaleType="matrix" android:layout_weight="1"> </ImageView> <ImageView android:id="@+id/imageView2" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/icon" android:scaleType="matrix" android:layout_weight="1" android:background="#00aa00" > </ImageView> </LinearLayout> </LinearLayout> and main file is package com.example.multitouch; import android.app.Activity; import android.graphics.Matrix; import android.os.Bundle; import android.view.MotionEvent; import android.view.View; import android.view.View.OnTouchListener; import android.widget.ImageView; public class multitouch extends Activity implements OnTouchListener{ /** Called when the activity is first created. */ Matrix matrix = new Matrix() ; Matrix eventmatrix = new Matrix(); static float centerX,centerY; final static int NONE = 0; final static int DRAG = 1; int touchState=NONE; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ImageView view = (ImageView) findViewById(R.id.imageView); view.setOnTouchListener(this); } @Override public boolean onTouch(View v, MotionEvent event) { // TODO Auto-generated method stub ImageView view = (ImageView) v; final int action = event.getAction(); switch(action){ case MotionEvent.ACTION_DOWN: touchState= DRAG; centerX= event.getX(); centerY = event.getY(); eventmatrix.set(matrix); break; case MotionEvent.ACTION_MOVE: if (touchState == DRAG) { matrix.set(eventmatrix); matrix.setTranslate(event.getX()-centerX,event.getY()-centerY); } view.setImageMatrix(matrix); //view.setImageMatrix(eventmatrix); break; case MotionEvent.ACTION_UP: //touchState=NONE; break; } return true; } } Please give me a reply
-
Answer:
It can get really complicated, but check this out: http://blahti.wordpress.com/2011/02/10/moving-views-part-3/
aneesh at Stack Overflow Visit the source
Other answers
How can you move it to another layout if it's not its child? I'd try to wrap your root layout into RelativeLayout and place the image there, so you could move it wherever you want. Something like this: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <ImageView/> <LinearLayout> <LinearLayout/> </LinearLayout> </RelativeLayout>
ernazm
Related Q & A:
- How to insert data from one table to another?Best solution by Stack Overflow
- How to see if one string contains another string?Best solution by Stack Overflow
- How can I transfer my music from one iPod to another?Best solution by Yahoo! Answers
- How to transfer Outlook Express emails from one laptop to another?Best solution by blog.chron.com
- How can I move bookmarks from one email to another one?Best solution by pcworld.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.