您好,登錄后才能下訂單哦!
編寫可復用的自定義按鈕
現在有個正在開發的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將不能生效。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。