自定义控件

dp、sp和px

  • px:像素,不同设备不同的显示屏显示效果是相同的
  • dp:与“像素密度”密切相关。

什么是像素密度?假设有一部手机,屏幕的物理尺寸为1.5英寸x2英寸,屏幕分辨率为240x320,则我们可以计算出在这部手机的屏幕上,每英寸包含的像素点的数量为240/1.5=160dpi(横向)或320/2=160dpi(纵向),160dpi就是这部手机的像素密度,像素密度的单位dpi是Dots Per Inch的缩写,即每英寸像素数量。
不同的手机/平板可能具有不同的像素密度。使用dp可以让图片在不同像素密度手机上显示出来的效果十分接近。

dp = (px / 1.5 + 0.5)

  • dip = dp
  • sp:主要用于字体显示,显示字体随系统设置改变而改变

这些单位何时使用?
- 文字尺寸一律用sp
-非文字尺寸一律用dp
-偶尔需要px,例如需要在屏幕上画一条细的分割线

Inflater

LayoutInflater: 用于将一个XML布局文件实例化到对应的view。

获得LayoutInflater的三种方式:
LayoutInflater inflater = getLayoutInflater();//在Activity中调用
LayoutInflater inflater = LayoutInflater.from(context)

                             getSystemService(Context.LAYOUT_INFLATER_SERVICE)```

将一个XML布局文件实例化到对应的view:
```View v = inflater.inflate(R.layout.custom, null);//第二个参数为ViewGroup```

获取界面中的组件:```view.findViewById();```

###提取布局属性:theme & style
- Theme是针对窗体级别的,改变窗体样式
- Style是针对窗体元素级别的,改变指定控件或者Layout

style中的parent属性表明此style会继承parent style的所有内容

<resource>
<style name="CustomTextView">
<item name="android:background">@color/red</item> 表示其中的一个属性
<item name="android:textSize">20sp</item>
</style>

    <style name="DIYTextView" parent="CustomTextView">
    </style>

</resource>

```<TextView style="@style/CustomTextView"/>```

使用setTheme方法可以动态切换主题。

关于自定义主题样式更多内容可参考[zziss](http://www.cnblogs.com/zziss/archive/2012/03/17/2403251.html)

###View是如何工作的
Android程序中的任何一个布局、任何一个控件其实都是直接或间接继承自View的,比如TextView, Button, ListView等等。这些视图想要显示在屏幕上,都必须要经过非常科学的绘制流程后才能显示出来。

**每个视图的绘制都必须要经过三个阶段:**
- Measure
这个阶段View会做一次测量,算出自己需要占用多大的面积。
```protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {}```
onMeasure方法的两个参数分别用于确定视图的高度和宽度的规格和大小。
- Layout
给视图进行布局,确定视图的位置。
```protected void onLayout(boolean changed, int left, int top, int right, int bottom) {}```
- Draw
进行视图绘制。
```protected void onDraw(Canvas canvas) {}```

当视图改变时,需要调用 **invalidate()** 方法使改变显示。

**创建自定义控件的形式:**
- 继承已有的控件来实现自定义控件
例如Button就是继承于TextView的
- 继承一个布局文件来实现自定义控件
- 基层view类来实现自定义控件

下面是一个简单的例子<br>- 实现一个圆形的黑色按钮<br>- 中间有一个白色的数字<br>- 数字起始为0<br>- 每点击一次增加1<br>- 当达到上限时提示目标达成<br>- 按钮下有个文本框可以设置目标

public class CircleCountButton extends View implements View.OnClickListener {
private Paint mPaint;
private float mTextSize;
private int mButtonNum;
private String mText;
private Rect mRect;
private int mTarget;
private TypedArray mTypedArray;
private Context mContext;

public CircleCountButton(Context context) {
    this(context, null);
}

public CircleCountButton(Context context, AttributeSet attrs) {
    this(context, attrs, 0);
}

public CircleCountButton(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    init(context, attrs);
}

private void init(Context context, AttributeSet attrs){
    mContext = context;
    mPaint = new Paint();
    mButtonNum = 0;
    mText = String.valueOf(mButtonNum);

    mRect = new Rect();

    mTypedArray = context.obtainStyledAttributes(attrs, R.styleable.DIYbtn);
    mTarget = mTypedArray.getInteger(R.styleable.DIYbtn_target, 10);  //默认值为20
    mTextSize = mTypedArray.getDimension(R.styleable.DIYbtn_btnTextSize, 100);
}

@Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    //设定按钮背景颜色为黑色
    mPaint.setColor(Color.BLACK);
    canvas.drawCircle(getWidth() / 2, getHeight() / 2, getWidth() / 2, mPaint);
    //设定文字颜色为白色
    mPaint.setColor(Color.WHITE);
    //设定字体大小
    mPaint.setTextSize(mTextSize);
    //返回文字的边界到Rect
    mPaint.getTextBounds(mText, 0, mText.length(), mRect);
    canvas.drawText(mText, getWidth() / 2 - mRect.width() / 2,
                     getHeight() / 2 + mRect.height() / 2, mPaint);
    //第二、三个参数为绘制文本参考的x,y基准线位置
}

@Override
public void onClick(View view) {
    if (mButtonNum == mTarget) {
        mButtonNum = 0;
        Toast.makeText(mContext, "目标已达成", Toast.LENGTH_SHORT).show();
    }
    else {
        mButtonNum++;
    }
    mText = String.valueOf(mButtonNum);
    invalidate();
}

public void setTarget(int num) {
    mTarget = num;
}

}

首先定义一个CircleCountButton类继承自View

<resources>
<declare-styleable name="DIYbtn">
<attr name="target" format="integer"/>
<attr name="btnTextSize" format="dimension"/>
</declare-styleable>
</resources>

编写values/attrs.xml,在其中编写styleable标签元素。
代码中声明了自定义视图的两个属性target和btnTextSize。
format为属性的类型。

mTypedArray = context.obtainStyledAttributes(attrs, R.styleable.DIYbtn);
mTarget = mTypedArray.getInteger(R.styleable.DIYbtn_target, 10); //默认值为20
mTextSize = mTypedArray.getDimension(R.styleable.DIYbtn_btnTextSize, 100);

在自定义视图类中通过**TypedArray**获取属性
<com.kevinwang.diybutton.CircleCountButton
    android:layout_width="100dp"
    android:layout_height="100dp"
    app:target="10"
    app:btnTextSize="25sp"
    android:id="@+id/count_btn"
    android:layout_centerHorizontal="true"
    />

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
......
/>
</RelativaLayout>

在布局文件中使用属性,注意想要使用自定义属性,应该注意nameSpace.

public class MainActivity extends AppCompatActivity {

private CircleCountButton mCircleCountButton;
private EditText mEditText;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mCircleCountButton = (CircleCountButton) findViewById(R.id.count_btn);

    mCircleCountButton.setOnClickListener(mCircleCountButton);
    mEditText = (EditText) findViewById(R.id.target_text);
    View.OnKeyListener onKeyListener = new View.OnKeyListener() {
        @Override
        public boolean onKey(View view, int i, KeyEvent keyEvent) {
            if (i == KeyEvent.KEYCODE_ENTER) {//i为keycode
                mCircleCountButton.setTarget(Integer.
                          valueOf(mEditText.getText().toString()));
                InputMethodManager inputMethodManager = (InputMethodManager) view.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
                if (inputMethodManager.isActive()) {
                    inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0);
                }
            }
            return false;
        }
    };
    mEditText.setOnKeyListener(onKeyListener);
}

}

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.kevinwang.diybutton.MainActivity">

<com.kevinwang.diybutton.CircleCountButton
    android:layout_width="100dp"
    android:layout_height="100dp"
    app:target="10"
    app:btnTextSize="25sp"
    android:id="@+id/count_btn"
    android:layout_centerHorizontal="true"
    />

<EditText
    android:id="@+id/target_text"
    android:layout_below="@id/count_btn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:hint="@string/target_hint"
    android:inputType="number"/>

</RelativeLayout>

![](http://upload-images.jianshu.io/upload_images/2477456-b708b3cbb8f7ae40.gif?imageMogr2/auto-orient/strip)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容