android实现点击背景图片不同区域实现不同事件

有时候我们拿到一张背景图片,客户要求点击图片的不同区域去跳转或者实现不同的操作事件。我们首先要确认图片的点击区域,往往我们会在布局文件那里下手,但是这样不好做适配,所以我实现了以下方法,基本功能可以实现,而且也做好了适配,可以参考一下。

201608121014431586.png

1.找到对应区域的像素点。图片中需要点击的区域是圆,所以只要找到圆心和测量出半径即可(介绍一款图片软件Mark Man),由于得到的是PX,所以要转换为dip(dp=px/2);

arrays.xml

<!-- 男人头部 -->
    <string-array name="man_head">
        <item>man_hair</item>
        <item>man_eye</item>
        <item>man_mouth</item>
        <item>man_throat</item>
        <item>man_mind</item>
        <item>man_ear</item>
        <item>man_nose</item>
    </string-array>
 
    <string-array name="man_hair_code">
        <item>hair</item>
        <item>头发</item>
    </string-array>
 
    <string-array name="man_eye_code">
        <item>eye</item>
        <item>眼</item>
    </string-array>
    <string-array name="man_mouth_code">
        <item>mouth</item>
        <item>口腔</item>
    </string-array>
    <string-array name="man_throat_code">
        <item>throat</item>
        <item>咽喉</item>
    </string-array>
    <string-array name="man_mind_code">
        <item>mind</item>
        <item>头/脑</item>
    </string-array>
    <string-array name="man_ear_code">
        <item>ear</item>
        <item>耳朵</item>
    </string-array>
    <string-array name="man_nose_code">
        <item>nose</item>
        <item>鼻</item>
    </string-array>
 
    <integer-array name="man_hair">
        <item>30</item>
        <item>46</item>
        <item>20</item>
    </integer-array>
    <integer-array name="man_eye">
        <item>30</item>
        <item>103</item>
        <item>20</item>
    </integer-array>
    <integer-array name="man_mouth">
        <item>30</item>
        <item>160</item>
        <item>20</item>
    </integer-array>
    <integer-array name="man_throat">
        <item>30</item>
        <item>220</item>
        <item>20</item>
    </integer-array>
    <integer-array name="man_mind">
        <item>289</item>
        <item>44</item>
        <item>20</item>
    </integer-array>
    <integer-array name="man_ear">
        <item>289</item>
        <item>105</item>
        <item>20</item>
    </integer-array>
    <integer-array name="man_nose">
        <item>289</item>
        <item>162</item>
        <item>20</item>
    </integer-array>

2.实现自定义ImageView控件,用来存放图片。

BaseBodyView.java

/**
 * 类说明:身体区域
 *      array必存三个点 圆中心坐标 x,y 半径 r
 * Author: gaobaiq
 * Date: 2016/7/23 11:22
 */
public abstract class BaseBodyView extends ImageView {
    protected Context mContext;
 
    // 保存所有点击区域
    private Map<string, bodyarea=""> mBodyArea ;
 
    // 保存点击的区域
    private Set<string> mFocus;
 
    protected Paint paint = new Paint();
 
    // 点击时Path区域的转换,用于触摸点的判断
    protected RectF mPathRectF = new RectF();
 
 
    protected OnBodyClickListener mBodyClick;
 
 
    public BaseBodyView(Context context) {
        this(context, null);
    }
 
 
    public BaseBodyView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }
 
 
    public BaseBodyView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        mContext = context;
        initDatas();
    }
 
 
    private void initDatas() {
        mBodyArea = new HashMap<>();
        mFocus = new HashSet<>();
        //paint.setStyle(Paint.Style.FILL);
        //paint.setARGB(170, 0, 205, 0);
        initBodyArea();
    }
 
    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        // 进行触摸区域绘制
        //for(String key : mFocus) {
        //    Path path = mBodyArea.get(key).getPath();
        //    canvas.drawPath(path, paint);
        //}
    }
 
    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (mBodyClick != null) {
            checkAreas(event);
            if(!mFocus.isEmpty()) {
                BodyArea area = null;
                for(String key : mFocus){
                    area = mBodyArea.get(key);
                    //invalidate();     // 渲染选中区域颜色
                    mBodyClick.onBodyClick(0, area.getPtKeys());
                }
            }
        }
        return super.onTouchEvent(event);
    }
 
    private void checkAreas(MotionEvent event) {
        mFocus.clear();
        for(String key : mBodyArea.keySet()) {
            mPathRectF.setEmpty();
            Path path = mBodyArea.get(key).getPath();
            path.computeBounds(mPathRectF, true);
            if(mPathRectF.contains(event.getX(),event.getY())) {
                mFocus.add(key);
                break;
            }
        }
    }
 
    public void initBodyArea() {
        mBodyArea.clear();
        mFocus.clear();
        String[] keys = mContext.getResources().getStringArray(initArray());
        BodyArea bodyArea = null;
        int idenId = -1;
        if(keys != null) {
            for(String key : keys) {
                idenId = mContext.getResources().getIdentifier(key, "array", initPackage());
                int[] paths = mContext.getResources().getIntArray(idenId);
                idenId = mContext.getResources().getIdentifier(key + "_code", "array", initPackage());
                String[] ptKeys = mContext.getResources().getStringArray(idenId);
                bodyArea = new BodyArea(ptKeys, paths);
                mBodyArea.put(key, bodyArea);
            }
        }
    }
 
 
 
    /**
     * 进行不同材质机器的兼容
     * */
    private float toDip(Context context,float pxValue){
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (pxValue * scale + 0.5f);
    }
 
 
    protected abstract int initArray();
    protected abstract String initPackage();
 
 
    /**
     * 点击事件抽象方法
     */
    public void setOnBodyClickListener(OnBodyClickListener listener) {
        this.mBodyClick = listener;
    }
 
    public interface OnBodyClickListener {
        void onBodyClick(int position, String[] keys);
    }
 
 
 
    /**
     * 圆形区域对象
     * */
    class BodyArea {
        private String[] mPtKeys;
        private Path mPath;
        public BodyArea(String[] ptKeys, int[] paths) {
            super();
            this.mPtKeys = ptKeys;
            mPath = new Path();
            int len = paths.length;
            if (len >= 3) {
                mPath.addCircle(toDip(mContext, paths[0]), toDip(mContext,
                        paths[1]), toDip(mContext, paths[2]),
                        Path.Direction.CW);
            }
 
            mPath.close();
        }
 
        public String[] getPtKeys() {
            return mPtKeys;
        }
 
        public void setPtKeys(String[] ptKeys) {
            this.mPtKeys = ptKeys;
        }
 
        public Path getPath() {
            return mPath;
        }
    }
}

ManHeadView.java

/**
 * 类说明:男头部图片区域点击
 *         自定义控件命名要与array的一样
 * Author: gaobaiq
 * Date: 2016/7/22 10:00
 */
public class ManHeadView extends BaseBodyView {
 
    public ManHeadView(Context context) {
        this(context, null);
    }
 
 
    public ManHeadView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }
 
 
    public ManHeadView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }
 
 
    @Override protected int initArray() {
        return R.array.man_head;
    }
 
 
    @Override protected String initPackage() {
        return mContext.getPackageName();
    }
}

3.布局(切记android:scaleType="matrix")

<linearlayout   
xmlns:android="http://schemas.android.com/apk/res/android"   
android:background="@color/white"
android:layout_height="match_parent"   
android:layout_width="match_parent"   
android:orientation="vertical"   >   

<com.app.gaobaiq.widget.customview.manheadview      
android:id="@+id/img_head"      
android:layout_gravity="center"      
android:layout_height="wrap_content"      
android:layout_width="wrap_content"      
android:scaletype="matrix"     
android:src="@drawable/view_man_head"/>
</linearlayout>

4.实现方法

mImgHead.setOnBodyClickListener(new ManHeadView.OnBodyClickListener() {
   @Override public void onBodyClick(int position, String[] keys) {
       String message  ="Code:" + keys[0] + ", Name:" + keys[1];
       ToastUtils.ToastMessage(getActivity(), message);
   }
});
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,088评论 5 459
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,715评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,361评论 0 319
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,099评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 60,987评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,063评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,486评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,175评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,440评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,518评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,305评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,190评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,550评论 3 298
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,880评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,152评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,451评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,637评论 2 335

推荐阅读更多精彩内容