简单拖动效果(带Cache,需要完善)

来源:互联网 发布:python zipline 编辑:程序博客网 时间:2024/06/17 22:09
如何去实现一个具有幻象的拖拽效果?
所谓”幻象“就是当你按下去拖动一个View时,View本身不动,拖动的是这个View的复制品,当抬起时真正的View才显示到拖动的地方。
复制品很容易解决,2句代码就可以了:
v.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(v.getDrawingCache());

package com.ql.app;import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.view.MotionEvent;import android.view.View;import android.view.View.OnTouchListener;import android.widget.Button;import android.widget.FrameLayout;import android.widget.ImageView;import android.widget.FrameLayout.LayoutParams;/** * 参考:http://techdroid.kbeanie.com/2010/04/simple-drag-n-drop-on-android.html * @author admin * */public class App extends Activity implements OnTouchListener{private final static int START_DRAGGING = 0;private final static int STOP_DRAGGING = 1;private Button btn;private FrameLayout layout;private int status;private LayoutParams params;private ImageView image;/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);layout = (FrameLayout) findViewById(R.id.layout);// layout.setOnTouchListener(this);btn = (Button) findViewById(R.id.btn);btn.setDrawingCacheEnabled(true);btn.setOnTouchListener(this);params = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);}@Overridepublic boolean onTouch(View view, MotionEvent me) {switch (me.getAction()) {case MotionEvent.ACTION_DOWN:status = START_DRAGGING;image = new ImageView(this);image.setImageBitmap(btn.getDrawingCache());layout.addView(image, params);break;case MotionEvent.ACTION_MOVE:if (status == START_DRAGGING) {image.setPadding((int) me.getRawX(), (int) me.getRawY(), 0, 0);image.invalidate();}break;case MotionEvent.ACTION_UP:status = STOP_DRAGGING;Log.i("Drag", "Stopped Dragging");//layout.removeView(image);break;default:break;}return false;}}

<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent" android:layout_height="fill_parent"android:id="@+id/layout"><Button android:layout_width="wrap_content"android:layout_height="wrap_content" android:id="@+id/btn"android:text="Drag Me"/></FrameLayout>



Android Drag and Drop
http://www.vogella.com/tutorials/AndroidDragAndDrop/article.html
0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 驾照过期未年检怎么办 驾驶证时间过了怎么办 驾证年审逾期怎么办 驾照a2扣分了怎么办 叉车年检过期了怎么办 部队驾驶证过期了怎么办 车检过期5天怎么办 b2被注销了怎么办 小车逾期未审验怎么办 汽车逾期未审验怎么办 对方无偿还能力怎么办 摩托车驾驶证年审过期怎么办 当兵父亲有前科怎么办 被动态监控了怎么办 学习驾驶证明过期怎么办 a2驾驶证扣分了怎么办 c1驾驶证脱审怎么办 摩托车驾驶证脱审怎么办 行车证到期了怎么办 外省驾驶证掉了怎么办 错过教师证体检怎么办? c3驾驶证怎么办c1证 驾驶证扣分18分怎么办 货车罚款单上没写金额怎么办 报名费驾校不退怎么办 异地学车暂住证怎么办 考驾照老是紧张怎么办 驾照老考不过怎么办 三轮摩托车行驶证怎么办 a2驾驶证附件假背扣怎么办 驾驶证扣分15分怎么办 烟草证副本丢失怎么办 身份证异地丢了怎么办 营业执照正本遗失了怎么办 换新驾照过期了怎么办 武汉暂住证过期了怎么办 驾照破损在异地怎么办 行车本丢了怎么办 在异地换驾照怎么办 户口变更了驾照怎么办 房东没有房产证怎么办居住证