畫板(2)

畫板——畫筆顏色、基本功能

(代碼中有基礎(chǔ)解釋乐疆,有疑問歡迎來找我探討;浴)


畫板

xml

<androidx.constraintlayout.widget.ConstraintLayout 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">

    <!--
    constraintLayout
    需要知道:x,y,寬,高-->

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@+id/operation"
        app:layout_constraintTop_toTopOf="parent"
        android:orientation="horizontal">

        <!--<SeekBar-->
            <!--android:id="@+id/slider"-->
            <!--android:layout_width="match_parent"-->
            <!--android:layout_height="50dp"-->
            <!--android:background="#666"-->
            <!--android:progressTint="#000"-->
            <!--android:progressBackgroundTint="#f00"-->
            <!--android:thumbTint="#fff"-->
            <!--android:max="100"/>-->

        <!--
        滑動(dòng)條
        自定義Slider
        1.進(jìn)度條
        2.滑動(dòng)條
        3.橫豎切換
        創(chuàng)建Slider extends View
        -->
        <swu.xujiangtao.day_11drawtop.Slider
            android:id="@+id/slider"
            android:layout_width="20dp"
            android:layout_height="match_parent"
            android:layout_marginTop="20dp"
            android:layout_marginBottom="20dp"
            android:layout_marginLeft="20dp"
            app:layout_constraintLeft_toLeftOf="parent"/>

        <!--畫板-->
        <swu.xujiangtao.day_11drawtop.DrawBoardView
            android:id="@+id/Board"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            app:layout_constraintLeft_toRightOf="@+id/slider"
            app:layout_constraintRight_toLeftOf="@+id/color"
            android:background="@drawable/ic_launcher_foreground"/>

        <LinearLayout
            android:id="@+id/color"
            android:layout_width="60dp"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:layout_marginRight="20dp"
            app:layout_constraintRight_toRightOf="parent"
            android:gravity="center">

            <Button
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:background="@color/colorPrimary"
                android:onClick="choiceColor"/>

            <Button
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:background="#000"
                android:onClick="choiceColor"/>

            <Button
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:background="@color/colorAccent"
                android:onClick="choiceColor"/>

            <Button
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:background="#ff5"
                android:onClick="choiceColor"/>

        </LinearLayout>
    </androidx.constraintlayout.widget.ConstraintLayout>

    <LinearLayout
        android:id="@+id/operation"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:orientation="horizontal"
        app:layout_constraintBottom_toBottomOf="parent"
        android:background="@color/colorAccent"
        android:gravity="center">

        <Button
            android:layout_width="80dp"
            android:layout_height="match_parent"
            android:text="撤銷"
            android:onClick="goBack"
            />

        <Button
            android:layout_width="80dp"
            android:layout_height="match_parent"
            android:text="清空"
            android:onClick="clear"/>

        <Button
            android:layout_width="80dp"
            android:layout_height="match_parent"
            android:text="橡皮擦"
            android:onClick="eraser"/>

        <Button
            android:layout_width="80dp"
            android:layout_height="match_parent"
            android:text="上一步"
            android:onClick="lastStep"/>

        <Button
            android:layout_width="80dp"
            android:layout_height="match_parent"
            android:text="保存"
            android:onClick="save"/>
    </LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

MainActivity

public class MainActivity extends AppCompatActivity {
    private DrawBoardView boardView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //獲取畫板視圖對(duì)象
        boardView=findViewById(R.id.Board);

        //獲取滑動(dòng)條視圖對(duì)象
        final Slider  slider = findViewById(R.id.slider);
//        new Timer().schedule(new TimerTask() {
//            @Override
//            public void run() {
//                slider.setProgress(
//                        (float) (slider.getProgress()+0.01));
//            }
//        },0,100);

        slider.setMax(30);
        slider.setStyle(Slider.SLIDER);

        slider.setOnSliderChangeListener(new Slider.OnSliderChangeListener() {
            @Override
            public void progressChanged(float progress) {

            }
        });


        slider.setProgress(boardView.getLineSize());

    }

    @Override
    protected void onResume() {
        super.onResume();

        //設(shè)置橫豎屏
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);
    }

    void text(){
        /*SeekBar slider=findViewById(R.id.slider);
        //關(guān)鍵幀動(dòng)畫
        //補(bǔ)間動(dòng)畫:旋轉(zhuǎn) 平移 縮放 漸變
        //屬性動(dòng)畫:ObjectAnimator
                  //ValueAnimator 在給定值區(qū)間動(dòng)畫
                  //ViewPropertyAnimator animator().動(dòng)畫 快速動(dòng)畫
        //slider.animate().rotation(90);
        //監(jiān)聽滑動(dòng)條的滑動(dòng)事件
        slider.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
            @Override
            public void onProgressChanged(SeekBar seekBar, int i, boolean b) {
                //進(jìn)度值改變
                //System.out.println("change");
            }

            @Override
            public void onStartTrackingTouch(SeekBar seekBar) {
                //監(jiān)聽已經(jīng)開始拖拽
                //System.out.println("start");
            }

            @Override
            public void onStopTrackingTouch(SeekBar seekBar) {
                //停止拖拽 手放開
                //System.out.println("stop");
            }
        });
        */
    }

    //選顏色
    public void choiceColor(View view) {
        //獲取按鈕上的背景顏色
        ColorDrawable drawable = (ColorDrawable)view.getBackground();
        //獲取顏色
        boardView.setLineColor(drawable.getColor());
    }

    //撤銷
    public void goBack(View view) {
        boardView.removeLast();
    }

    //清空
    public void clear(View view) {
        boardView.removeAll();
    }

    //橡皮擦
    public void eraser(View view) {
        ColorDrawable drawable = (ColorDrawable)
                boardView.getBackground();
        if (boardView!=null) {
            boardView.setLineColor(drawable.getColor());
        }
    }

    //保存
    public void save(View view) {
    }

    //還原
    public void lastStep(View view) {
        boardView.returnTolastStep();
    }
}

Slider

public class Slider extends View {
    private int lineSize = 6; //線條的粗細(xì)
    private int lineColor = Color.BLACK;//默認(rèn)線條顏色
    private Paint linePaint;

    private Paint circlePaint; //小圓點(diǎn)的畫筆
    private int thumbColor = Color.MAGENTA; //小圓點(diǎn)的顏色
    private int cx; //中心點(diǎn)x
    private int cy; //中心點(diǎn)y
    private int radius; //小圓點(diǎn)半徑

    private int thumbScale = 4; //小圓點(diǎn)縮放尺寸基數(shù)
    private float position; //記錄觸摸點(diǎn)的坐標(biāo)

    private Paint progressPaint; //進(jìn)度條進(jìn)度的畫筆
    private int progressColor = Color.MAGENTA;//顏色

    public static int PROGERSS=0;//進(jìn)度條
    public static int SLIDER=1;//滑動(dòng)條
    private int style=PROGERSS;//默認(rèn)樣式

    public int max=100;//設(shè)置最大值
    public float progress;//進(jìn)度值

    //滑動(dòng)改變
    private OnSliderChangeListener onSliderChangeListener;
    public Slider(Context context) {
        super(context);
    }

    public Slider(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    private void init(){
        //背景線
        linePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        linePaint.setColor(lineColor);
        linePaint.setStrokeWidth(lineSize);

        //小圓點(diǎn)
        circlePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        circlePaint.setColor(thumbColor);
        circlePaint.setStyle(Paint.Style.FILL);

        //進(jìn)圖條
        progressPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        progressPaint.setColor(progressColor);
        progressPaint.setStrokeWidth(lineSize);
    }

    @Override
    protected void onDraw(Canvas canvas) {

        if (getWidth() > getHeight()){
            //橫著
            //畫背景條
            canvas.drawLine(0,
                    getHeight()/2,
                    getWidth(),
                    getHeight()/2,
                    linePaint);

            if (position > 0) {
                //畫進(jìn)度條
                canvas.drawLine(0,
                        getHeight() / 2,
                        position,
                        getHeight() / 2,
                        progressPaint);
            }

            radius = getHeight()/thumbScale;
            cy = getHeight()/2;

            //確定cx的值
            if (position < radius){
                cx = radius;
            }else if (position > getWidth()-radius){
                cx = getWidth()-radius;
            }else{
                cx = (int) position;
            }

        }else{
            //豎著
            canvas.drawLine(getWidth()/2,
                    0,
                    getWidth()/2,
                    getHeight(),
                    linePaint);
            if (position > 0){
                canvas.drawLine(getWidth()/2,
                        0,
                        getWidth()/2,
                        position,
                        progressPaint);
            }

            radius = getWidth()/thumbScale;
            cx = getWidth()/2;

            //確定中心點(diǎn)cy的值
            if (position < radius){
                cy = radius;
            }else if(position > getHeight()-radius){
                cy = getHeight()-radius;
            }else{
                cy = (int) position;
            }
        }

        //畫小圓點(diǎn)
        if (style==SLIDER) {
            canvas.drawCircle(cx, cy, radius, circlePaint);
        }
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()){
            case MotionEvent.ACTION_DOWN:
                //小圓點(diǎn)放大
                thumbScale = 2;
                if (getWidth() > getHeight()){
                    //橫向時(shí) y不變 x改變
                    position = event.getX();
                }else{
                    //豎著時(shí) x不變 y改變
                    position = event.getY();
                }
                callback();
                break;
            case MotionEvent.ACTION_MOVE:
                //獲取當(dāng)前觸摸點(diǎn)的值 X Y
                if (getWidth() > getHeight()){
                    //橫向時(shí) y不變 x改變
                    position = event.getX();
                    if (position <0){
                        position = 0;
                    } else if (position > getWidth()){
                        position = getWidth();
                    }
                }else{
                    //豎著時(shí) x不變 y改變
                    position = event.getY();
                    if (position <0){
                        position = 0;
                    } else if (position > getHeight()){
                        position = getHeight();
                    }
                }
                callback();
                break;
            case MotionEvent.ACTION_UP:
                thumbScale = 4;
                break;
        }
        if (style==SLIDER) {
            invalidate();
        }
        return true;
    }

    private void callback(){
        if (onSliderChangeListener !=null){
            if (getWidth()>getHeight()){
            progress=position/getWidth();
            }else {
            progress=position/getHeight();
            }
            onSliderChangeListener.progressChanged(progress*max);
        }
    }

    public int getStyle() {
        return style;
    }

    public void setStyle(int style) {
        this.style = style;
    }

    public float getProgress() {
        return progress;
    }

    public void setPrpgress(int progress){
        //計(jì)算比例
        this.progress= (float) (progress*1.0/max);
        setProgress(this.progress);
    }

    public void setProgress(float progress) {
        this.progress = progress;
        if (progress<1.001) {
            //將進(jìn)度值轉(zhuǎn)化為控件中的尺寸位置
            if (getWidth() > getHeight()) {
                position = progress * getWidth();
            } else {
                position = progress * getHeight();
            }
        }
        invalidate();
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        //將進(jìn)度值轉(zhuǎn)化為控件中的尺寸位置
        if (getWidth() > getHeight()) {
            position = progress * getWidth();
        } else {
            position = progress * getHeight();
        }
    }

    public int getMax() {
        return max;
    }

    public void setMax(int max) {
        this.max = max;
    }

    public interface OnSliderChangeListener{
        void progressChanged(float progress);
    }

    public void setOnSliderChangeListener(OnSliderChangeListener onSliderChangeListener) {
        this.onSliderChangeListener = onSliderChangeListener;
    }
}

DrawBoardView

public class DrawBoardView extends View {
    private ArrayList<Graph> graphs;//操作的
    private ArrayList<Graph> orginaGraphs;//原始的
    private int lineColor= Color.BLACK;
    private int lineSize=15;

    Path mPath;

    public DrawBoardView(Context context) {
        super(context);
        init();
    }

    public DrawBoardView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    private void init(){
        //初始化數(shù)組
        graphs=new ArrayList<>();
        orginaGraphs=new ArrayList<>();
        setBackgroundColor(Color.WHITE);

    }

    @Override
    protected void onDraw(Canvas canvas) {
        //遍歷數(shù)組
        Iterator<Graph> iterator=graphs.iterator();
        while (iterator.hasNext()){
            //從集合中獲取一個(gè)圖形對(duì)象
            Graph line=iterator.next();
            //繪制圖形
            canvas.drawPath(line.path,line.paint);
        }
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()){
            case MotionEvent.ACTION_DOWN:
                //創(chuàng)建當(dāng)前這條線的Paint挤土,Path
                Paint mPaint=new Paint(Paint.ANTI_ALIAS_FLAG);
                mPaint.setColor(lineColor);
                mPaint.setStrokeWidth(lineSize);
                mPaint.setStyle(Paint.Style.STROKE);

                mPath=new Path();
                //設(shè)置起點(diǎn)
                mPath.moveTo(event.getX(),event.getY());
                //保存信息
                Graph temp=new Graph(mPaint,mPath);
                graphs.add(temp);
                orginaGraphs.add(temp);
                break;
            case MotionEvent.ACTION_MOVE:
                //連接Path終點(diǎn)到當(dāng)前觸摸點(diǎn)的線
                mPath.lineTo(event.getX(),event.getY());
                break;
            case MotionEvent.ACTION_UP:
                invalidate();
                break;
        }
        return true;
    }

    //創(chuàng)建私有類來管理圖形的畫板和路徑
    private class Graph{
        Paint paint;
        Path path;

        public  Graph(Paint paint,Path path){
            this.paint=paint;
            this.path=path;
        }
    }
    public int getLineSize() {
        return lineSize;
    }

    public void setLineSize(int lineSize) {
        this.lineSize = lineSize;
    }

    public int getLineColor() {
        return lineColor;
    }

    public void setLineColor(int lineColor) {
        this.lineColor = lineColor;
    }
    //撤銷
    public void removeLast(){
        if (graphs.size()>0){
            graphs.remove(graphs.size()-1);
            invalidate();
        }
    }
    //清空
    public void removeAll(){
        graphs.clear();
        invalidate();
    }
    //還原上一步
    public void returnTolastStep(){
        //判斷緩存中是否有
        if (graphs.size()<orginaGraphs.size()){
            //獲取上一步的索引值
            int index=graphs.size()-1+1;
            //從緩存中獲取index 添加到操作數(shù)組中
            graphs.add(orginaGraphs.get(index));
            //刷新
            invalidate();
        }
    }
}

最后我用此畫板項(xiàng)目制作了一幅杰作琴庵,不要表揚(yáng),不要羨慕仰美,其實(shí)你也可以迷殿!


賽梵高
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市筒占,隨后出現(xiàn)的幾起案子贪庙,更是在濱河造成了極大的恐慌,老刑警劉巖翰苫,帶你破解...
    沈念sama閱讀 211,376評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件止邮,死亡現(xiàn)場離奇詭異,居然都是意外死亡奏窑,警方通過查閱死者的電腦和手機(jī)导披,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來埃唯,“玉大人撩匕,你說我怎么就攤上這事∧眩” “怎么了止毕?”我有些...
    開封第一講書人閱讀 156,966評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長漠趁。 經(jīng)常有香客問我扁凛,道長,這世上最難降的妖魔是什么闯传? 我笑而不...
    開封第一講書人閱讀 56,432評(píng)論 1 283
  • 正文 為了忘掉前任谨朝,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘字币。我一直安慰自己则披,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評(píng)論 6 385
  • 文/花漫 我一把揭開白布洗出。 她就那樣靜靜地躺著士复,像睡著了一般。 火紅的嫁衣襯著肌膚如雪共苛。 梳的紋絲不亂的頭發(fā)上判没,一...
    開封第一講書人閱讀 49,792評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音隅茎,去河邊找鬼。 笑死嫉沽,一個(gè)胖子當(dāng)著我的面吹牛辟犀,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播绸硕,決...
    沈念sama閱讀 38,933評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼堂竟,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼!你這毒婦竟也來了玻佩?” 一聲冷哼從身側(cè)響起出嘹,我...
    開封第一講書人閱讀 37,701評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎咬崔,沒想到半個(gè)月后税稼,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡垮斯,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評(píng)論 2 327
  • 正文 我和宋清朗相戀三年郎仆,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片兜蠕。...
    茶點(diǎn)故事閱讀 38,626評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡扰肌,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出熊杨,到底是詐尸還是另有隱情曙旭,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評(píng)論 4 329
  • 正文 年R本政府宣布晶府,位于F島的核電站桂躏,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏郊霎。R本人自食惡果不足惜沼头,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評(píng)論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧进倍,春花似錦土至、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至垂蜗,卻和暖如春楷扬,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背贴见。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工烘苹, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人片部。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓镣衡,卻偏偏與公主長得像,于是被迫代替她去往敵國和親档悠。 傳聞我的和親對(duì)象是個(gè)殘疾皇子廊鸥,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • 畫板——滑動(dòng)條,進(jìn)度條辖所,橫豎屏切換 本文要點(diǎn) 橫豎屏的切換 系統(tǒng)滑動(dòng)條控件(SeekBar) 自定義滑動(dòng)條惰说,進(jìn)度條...
    開心的碼字達(dá)閱讀 520評(píng)論 0 1
  • ¥開啟¥ 【iAPP實(shí)現(xiàn)進(jìn)入界面執(zhí)行逐一顯】 〖2017-08-25 15:22:14〗 《//首先開一個(gè)線程,因...
    小菜c閱讀 6,365評(píng)論 0 17
  • 之前在csdn上發(fā)了一次缘回,之后可能轉(zhuǎn)戰(zhàn)簡書了吆视,為避免發(fā)發(fā)(二)的時(shí)候讓人不明所以,所以決定還是重發(fā)一次保證完整性新...
    原來如此丶閱讀 1,812評(píng)論 4 9
  • The TODO Tool Window 待辦事項(xiàng)工具窗口 TODO means, of course, to d...
    青木729閱讀 1,296評(píng)論 0 7
  • 如果 取消鬧鐘 讓我不安 那么我是脆弱的 夢(mèng)里有你 一份未完的答卷 鳥兒歡愉 一抹暖陽 一懷愁緒 一個(gè)春天的心事 ...
    田萍閱讀 173評(píng)論 0 4