91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

編寫可復用的自定義按鈕

發布時間:2020-07-25 08:21:02 來源:網絡 閱讀:292 作者:huangmeicai 欄目:移動開發

編寫可復用的自定義按鈕

現在有個正在開發的Android項目,里面已經有了一些不合理的UI實現方式。比如按鈕是一張圖:

 編寫可復用的自定義按鈕

可以看出,應該用編程的方式來實現這個按鈕,比如xml聲明drawable,一個矩形框,四個邊是圓角,要有個很細的邊框,黑色的,背景色使用漸進色效果。登錄使用文字而不是在圖形里。

這樣的好處很多:

· 自由的在不同分辨率屏幕下做適配,不必考慮圖形的長寬比;

· 當文字改動后,不必喊上美工一起加班處理;

· 文字的國際化。

本文方案的基本思路是,還是用這個圖,但是增加復用性,開發者只需在布局中使用自定義按鈕,就可以讓已經存在的這種布局具備點擊后高亮的效果,而不必準備多張圖,寫冗長的xml文件做selector。

實現后的效果,在手指觸碰到該按鈕的時候:

 編寫可復用的自定義按鈕


抬起或者移動到按鈕外區域恢復原來的樣子。

這里布局還是在xml中,類似這樣:

<com.witmob.CustomerButton
    android:id=”@+id/login”
    android:layout_width=”wrap_content”
    android:layout_height=”wrap_content”
    android:layout_alignParentLeft=”true”
    android:layout_centerVertical=”true”
    android:layout_marginLeft=”26dp”
    android:background=”@drawable/login_login_but”/>

實現的按鈕代碼:

package com.witmob;

import android.content.Context;
import android.graphics.LightingColorFilter;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;

public class CustomerButton extends Button {
   
    public CustomerButton(Context context) {
        super(context);
        this.init();
    }

    public CustomerButton(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        this.init();
    }

    public CustomerButton(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.init();
    }
   
    private void init(){
        this.setOnTouchListener(new OnTouchListener() {
           
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                int action=event.getActionMasked();
                switch (action) {
                case MotionEvent.ACTION_DOWN:
                    getBackground().setColorFilter(new LightingColorFilter(0xFFFFFFFF, 0x000000FF));
                    getBackground().invalidateSelf();
                    break;
                case MotionEvent.ACTION_UP:
                    getBackground().clearColorFilter();
                    getBackground().invalidateSelf();
                    break;
                case MotionEvent.ACTION_MOVE:
                    Rect rect=new Rect();
                    v.getDrawingRect(rect);
                   
                    if(!rect.contains((int)event.getX(),(int)event.getY())){
                        getBackground().clearColorFilter();
                        getBackground().invalidateSelf();
                    }
                    break;
                default:
                    break;
                }
                return false;
            }
        });
    }

}

代碼要點:

· 需要使用OnTouchListener,處理手指按下,抬起和移動到區域外的處理;

· 使用ColorFilter,獲取背景色的Drawable對象,增加顏色過濾;

· 操作Rect,結合手指坐標,判斷是否在區域內部;

· 另外,需要返回false,在OnTouchListener,否則按鈕的OnClickListener將不能生效。

 


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海原县| 华蓥市| 东港市| 徐水县| 龙岩市| 都江堰市| 霍林郭勒市| 娄底市| 河东区| 徐水县| 喀喇沁旗| 泰顺县| 晋江市| 包头市| 盐池县| 萝北县| 永福县| 弥勒县| 孙吴县| 郧西县| 鹤峰县| 武功县| 鄂温| 左权县| 耿马| 乌兰浩特市| 汝阳县| 上饶县| 涟水县| 阿拉善盟| 阿鲁科尔沁旗| 栾川县| 奉贤区| 鲜城| 灵台县| 吴堡县| 莱阳市| 启东市| 美姑县| 宜丰县| 宕昌县|