Android自定义View标识当前选中的控件

来源:未知 责任编辑:责任编辑 发表时间:2014-01-06 18:19 点击:

   一值有在用网上朋友贴出来的代码,很方便,也能学到很多东西.  这次我也贴点比较简单使用的小东西. 不怎么形容  有图有代码  自己看真想...
 
 主体代码
 
Myview代码 
package com.suncco.taoxie; 
 
import android.content.Context; 
import android.content.res.TypedArray; 
import android.graphics.Canvas; 
import android.graphics.Paint; 
import android.util.AttributeSet; 
import android.util.Log; 
import android.view.View; 
 
public class MyView extends View { 
    private int count; 
    private float space, radii; 
    private int point_normal_color, point_seleted_color; 
 
    // 选中 
    private int selected = 0; 
 
    // background seleted normal 
 
    public MyView(Context context, AttributeSet attrs) { 
        super(context, attrs); 
        TypedArray a = context 
                .obtainStyledAttributes(attrs, R.styleable.MyView); 
 
        count = a.getInteger(R.styleable.MyView_count, 3); 
        space = a.getDimension(R.styleable.MyView_space, 9); 
        radii = a.getDimension(R.styleable.MyView_point_radii, 9); 
 
        point_normal_color = a.getColor(R.styleable.MyView_point_normal_color, 
                0x000000); 
        point_seleted_color = a.getColor( 
                R.styleable.MyView_point_seleted_color, 0xffff07); 
 
        int sum = attrs.getAttributeCount(); 
        a.recycle(); 
    } 
 
    public void setCount(int count) { 
        this.count = count; 
        invalidate(); 
    } 
 
    public void next() { 
        if (selected < count - 1) 
            selected++; 
        else 

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Android 完全退出程序
  • 原创:Android应用开发-Andorid歌词秀,含源码
  • android 屏幕保护
  • Android手机软件汉化教程---第四课 dex文件汉化
  • 众多Android 开源项目推荐,给力工作给力学习
  • Android Audio代码分析4
  • Android得到已安装的应用程序信息!
  • Android开发者指南(29) —— USB Host and Accessory
  • Android成长的幕后推手:工程师鲁宾
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1