CoordinatorLayout的使用如此簡單

http://www.reibang.com/p/72d45d1f7d55

package com.example.test190803;


import android.os.Bundle;

import androidx.appcompat.app.AppCompatActivity;




public class MainActivity extends AppCompatActivity {

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

package com.example.test190803;

import android.content.Context;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.View;
import android.widget.Button;

import androidx.coordinatorlayout.widget.CoordinatorLayout;

/**
 * @author writing
 * @time 2019/8/3 15:15
 * @note ${TODO}
 */
public class MyBehavior extends CoordinatorLayout.Behavior<Button> {
    private int width;

    public MyBehavior(Context context, AttributeSet attrs) {
        super(context, attrs);
        DisplayMetrics display = context.getResources().getDisplayMetrics();
        width = display.widthPixels;
    }

    @Override
    public boolean layoutDependsOn(CoordinatorLayout parent, Button child, View dependency) {
        //如果dependency是TempView的實例,說明它就是我們所需要的Dependency
        return dependency instanceof TempView;
    }

    //每次dependency位置發(fā)生變化有额,都會執(zhí)行onDependentViewChanged方法
    @Override
    public boolean onDependentViewChanged(CoordinatorLayout parent, Button btn, View dependency) {

        //根據(jù)dependency的位置猜旬,設(shè)置Button的位置

        int top = dependency.getTop();
        int left = dependency.getLeft();

        int x = width - left - btn.getWidth();
        int y = top;

        setPosition(btn, x, y);
        return true;
    }

    private void setPosition(View v, int x, int y) {
        CoordinatorLayout.MarginLayoutParams layoutParams = (CoordinatorLayout.MarginLayoutParams) v.getLayoutParams();
        layoutParams.leftMargin = x;
        layoutParams.topMargin = y;
        v.setLayoutParams(layoutParams);
    }


}


package com.example.test190803;

import android.content.Context;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;

import androidx.coordinatorlayout.widget.CoordinatorLayout;

/**
 * @author writing
 * @time 2019/8/3 15:24
 * @note ${TODO}
 */
public class TempView extends View {
    private Context context;
    private int screenWidth;
    private int screenHeight;
    private int lastY;
    private int lastX;
    private ViewGroup.MarginLayoutParams layoutParams;
    private int left;
    private int top;

    public TempView(Context context) {
        this(context,null);
       this.context = context;
    }


    public TempView(Context context, AttributeSet attrs) {
        this(context, attrs,0);

    }

    public TempView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        DisplayMetrics displayMetrics =  getContext().getResources().getDisplayMetrics();
        int mWidth = displayMetrics.widthPixels;
        int mHeight = displayMetrics.heightPixels;
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        screenWidth = getMeasuredWidth();
        screenHeight = getMeasuredHeight();
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        int x = (int) event.getRawX();
        int y = (int) event.getRawY();
        switch (event.getAction()){
            case MotionEvent.ACTION_DOWN:
                break;
            case MotionEvent.ACTION_MOVE:
                layoutParams = (CoordinatorLayout.MarginLayoutParams) getLayoutParams();
                left = layoutParams.leftMargin + x - lastX;
                top = layoutParams.topMargin + y - lastY;
                layoutParams.leftMargin = left;
                layoutParams.topMargin = top;
                setLayoutParams(layoutParams);


                Log.i("zhang_xin","x:"+x+",left:"+ left +",top:"+ top +",layoutParams.leftMargin:"+ layoutParams.leftMargin);
                break;
            case MotionEvent.ACTION_UP:

                break;
        }
        lastX = x;
        lastY = y;
        return true;
    }
}

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
    tools:context=".MainActivity">
    <Button
        android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="300dp"
        android:layout_marginTop="300dp"
        android:background="#FFCC00"
        android:text="Hello"
        app:layout_behavior="com.example.test190803.MyBehavior" />

    <com.example.test190803.TempView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginLeft="300dp"
        android:layout_marginTop="300dp"
        android:background="#3366CC"
         />


</androidx.coordinatorlayout.widget.CoordinatorLayout>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末贡珊,一起剝皮案震驚了整個濱河市糠悯,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌溉箕,老刑警劉巖抗楔,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件勺良,死亡現(xiàn)場離奇詭異谬泌,居然都是意外死亡,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門屁桑,熙熙樓的掌柜王于貴愁眉苦臉地迎上來沟突,“玉大人,你說我怎么就攤上這事。” “怎么了宠默?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我要门,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任专缠,我火速辦了婚禮蔗怠,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘怠惶。我一直安慰自己,他們只是感情好脓魏,可當(dāng)我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布惭嚣。 她就那樣靜靜地躺著谋国,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上躯嫉,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天擂啥,我揣著相機與錄音,去河邊找鬼帆阳。 笑死哺壶,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蜒谤。 我是一名探鬼主播山宾,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼鳍徽!你這毒婦竟也來了资锰?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤阶祭,失蹤者是張志新(化名)和其女友劉穎绷杜,沒想到半個月后直秆,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡鞭盟,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年圾结,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片懊缺。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡疫稿,死狀恐怖培他,靈堂內(nèi)的尸體忽然破棺而出鹃两,到底是詐尸還是另有隱情,我是刑警寧澤舀凛,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布俊扳,位于F島的核電站,受9級特大地震影響猛遍,放射性物質(zhì)發(fā)生泄漏馋记。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一懊烤、第九天 我趴在偏房一處隱蔽的房頂上張望梯醒。 院中可真熱鬧,春花似錦腌紧、人聲如沸茸习。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽号胚。三九已至,卻和暖如春浸遗,著一層夾襖步出監(jiān)牢的瞬間猫胁,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工跛锌, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留弃秆,地道東北人。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓髓帽,卻偏偏與公主長得像驾茴,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子氢卡,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,724評論 2 351