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)