android 拖动圆形控件 滑动到屏幕边缘随机改变颜色

下面是activity的代码:

public class MainActivity extends AppCompatActivity implements View.OnTouchListener {

    Button button;
    GradientDrawable drawable;
    int screenWidth = 0;
    int screenHeight = 0;
    int lastX = 0;
    int lastY = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        DisplayMetrics dm = getResources().getDisplayMetrics();
        screenWidth = dm.widthPixels;
        screenHeight = dm.heightPixels - 50;

        button = (Button) findViewById(R.id.btn_hh);
        drawable = (GradientDrawable) button.getBackground();

        button.setOnTouchListener(this);
    }




    @Override
    public boolean onTouch(View v, MotionEvent event) {
        // 随机改变颜色
        Random random = new Random();
        int ranColor = 0;
        int ea=event.getAction();


        switch(ea){
            case MotionEvent.ACTION_DOWN:
                lastX = (int) event.getRawX();
                lastY = (int) event.getRawY();
                break;
            /**
             * layout(l,t,r,b)
             * l  Left position, relative to parent
             t  Top position, relative to parent
             r  Right position, relative to parent
             b  Bottom position, relative to parent
             * */
            case MotionEvent.ACTION_MOVE:
                int dx =(int)event.getRawX() - lastX;
                int dy =(int)event.getRawY() - lastY;

                int left = v.getLeft() + dx;
                int top = v.getTop() + dy;
                int right = v.getRight() + dx;
                int bottom = v.getBottom() + dy;


                if(left < 0){
                    left = 0;
                    right = left + v.getWidth();
                    ranColor = 0xff000000 | random.nextInt(0x00ffffff);
                    drawable.setColor(ranColor);
                }

                if(right > screenWidth){
                    right = screenWidth;
                    left = right - v.getWidth();
                    ranColor = 0xff000000 | random.nextInt(0x00ffffff);
                    drawable.setColor(ranColor);
                }

                if(top < 0){
                    top = 0;
                    bottom = top + v.getHeight();
                    ranColor = 0xff000000 | random.nextInt(0x00ffffff);
                    drawable.setColor(ranColor);
                }

                if(bottom > screenHeight){
                    bottom = screenHeight;
                    top = bottom - v.getHeight();
                    ranColor = 0xff000000 | random.nextInt(0x00ffffff);
                    drawable.setColor(ranColor);
                }

                v.layout(left, top, right, bottom);

                Log.i("", "position" + left +", " + top + ", " + right + ", " + bottom);

                lastX = (int) event.getRawX();
                lastY = (int) event.getRawY();

                break;
            case MotionEvent.ACTION_UP:

                break;
        }
        return false;
    }
}
下面是shape.xml中的代码:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">

    <!--填充色-->
    <solid android:color="#565745"/>

    <!-- 设置按钮的四个角为弧形 -->
    <!-- android:radius 弧形的半径 -->
    <corners android:radius="360dip"/>
</shape>



源码下载 :  https://github.com/duguodong258/duguodong#duguodong
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值