Android自定義控件之翻轉(zhuǎn)按鈕的示例代碼
本文介紹了Android自定義控件之翻轉(zhuǎn)按鈕的示例代碼,分享給大家,具體如下:
先看一下效果

一.先定義控件的基本結(jié)構(gòu)
這里我們定義一個容器,所以是在ViewGroup的基礎(chǔ)上擴(kuò)展。
簡單起見,直接使用擴(kuò)展自ViewGroup的LinearLayout,并將我們的控件擴(kuò)展自LinearLayout。
1.按鈕的基本布局如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<FrameLayout
android:id="@+id/mButton"
android:background="@color/colorPrimary"
android:padding="5dp"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/buttonText"
android:text="FLIPPED BUTTON"
android:textColor="@android:color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</FrameLayout>
</LinearLayout>
2.自定義控件開門三步走
構(gòu)造函數(shù),onMeasure,onLayout
package net.codepig.customviewdemo.view;
import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import net.codepig.customviewdemo.R;
public class flippedButton extends LinearLayout {
private Context mContext;
private int mWidth;//容器的寬度
private int mHeight;//容器的高度
private TextView buttonText;
private FrameLayout mButton;
public flippedButton(Context context){
super(context);
this.mContext = context;
init(context);
}
public flippedButton(Context context, AttributeSet attrs) {
super(context, attrs);
this.mContext = context;
init(context);
}
public flippedButton(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
this.mContext = context;
init(context);
}
private void init(Context context){
//使用xml中的布局
LayoutInflater.from(context).inflate(R.layout.filpped_button,this, true);
mButton=findViewById(R.id.mButton);
buttonText=findViewById(R.id.buttonText);
}
//測量子View
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
measureChildren(widthMeasureSpec, heightMeasureSpec);
mWidth = getMeasuredWidth();
mHeight = getMeasuredHeight();
//遍歷子元件
// int childCount = this.getChildCount();
// for (int i = 0; i < childCount; i++) {
// View child = this.getChildAt(i);
// this.measureChild(child, widthMeasureSpec, heightMeasureSpec);
// int cw = child.getMeasuredWidth();
// int ch = child.getMeasuredHeight();
// }
}
//排列子View的位置
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
int childTop = 0;
for (int i = 0; i < getChildCount(); i++) {
View child = getChildAt(i);
if (child.getVisibility() != GONE) {
child.layout(0, childTop,child.getMeasuredWidth(), childTop + child.getMeasuredHeight());
childTop = childTop + child.getMeasuredHeight();
}
}
}
}
3.在Activity的布局中直接使用
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical">
<net.codepig.customviewdemo.view.flippedButton
android:id="@+id/flippedButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</net.codepig.customviewdemo.view.flippedButton>
</LinearLayout>
現(xiàn)在可以看到一個最基本的自定義控件已經(jīng)可以使用了。
二.接下來是重點(diǎn),控件真正“自定義”的部分。
1.添加自定義事件
a.先定義自定義事件接口
/**
* 定義接口
*/
public interface IMyClick{
public void onMyClick(String str);
}
/**
* 初始化接口變量
*/
IMyClick iMyClick=null;
/**
* 自定義事件監(jiān)聽
* @param _iMyClick
*/
public void setOnMyClickListener(IMyClick _iMyClick){
iMyClick=_iMyClick;
}
b.添加按鈕點(diǎn)擊事件的監(jiān)聽并調(diào)用接口傳參
mButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
iMyClick.onMyClick("clicked me");
flipMe();
}
});
c.父級Activity監(jiān)聽事件
fButton=(flippedButton) findViewById(R.id.flippedButton);
fButton.setOnMyClickListener(new flippedButton.IMyClick(){
@Override
public void onMyClick(String str) {
Log.d(LOG_TAG,str);
}
});
2.繪制按鈕翻轉(zhuǎn)的動畫
這里的3d變換需要用到Camera(android.graphics.Camera)、Matrix。
這里可以想象成用Camera拍攝原件的圖形,并將拍攝得到的bitmap傳入matrix再繪制到Canvas。
而改變Camera鏡頭角度就可以得到縮放變形后的圖像以實(shí)現(xiàn)3d效果。
參考官方demo里的這個工具類的范例Rotate3dAnimation.java(其實(shí)是照搬)
a.先建一個3d變換的工具類:
package net.codepig.customviewdemo.model;
import android.graphics.Camera;//注意使用的是graphics里的而不是hardware里的
import android.view.animation.Animation;
import android.view.animation.Transformation;
import android.graphics.Matrix;
/**
* An animation that rotates the view on the Y axis between two specified angles.
* This animation also adds a translation on the Z axis (depth) to improve the effect.
*/
public class Rotate3dAnimation extends Animation {
private final float mFromDegrees;
private final float mToDegrees;
private final float mCenterX;
private final float mCenterY;
private final float mDepthZ;
private final boolean mReverse;
private Camera mCamera;
/**
* Creates a new 3D rotation on the Y axis. The rotation is defined by its
* start angle and its end angle. Both angles are in degrees. The rotation
* is performed around a center point on the 2D space, definied by a pair
* of X and Y coordinates, called centerX and centerY. When the animation
* starts, a translation on the Z axis (depth) is performed. The length
* of the translation can be specified, as well as whether the translation
* should be reversed in time.
*
* @param fromDegrees the start angle of the 3D rotation
* @param toDegrees the end angle of the 3D rotation
* @param centerX the X center of the 3D rotation
* @param centerY the Y center of the 3D rotation
* @param reverse true if the translation should be reversed, false otherwise
*/
public Rotate3dAnimation(float fromDegrees, float toDegrees, float centerX, float centerY, float depthZ, boolean reverse) {
mFromDegrees = fromDegrees;
mToDegrees = toDegrees;
mCenterX = centerX;
mCenterY = centerY;
mDepthZ = depthZ;
mReverse = reverse;
}
@Override
public void initialize(int width, int height, int parentWidth, int parentHeight) {
super.initialize(width, height, parentWidth, parentHeight);
mCamera = new Camera();
}
/**
*
* @param interpolatedTime 動畫時(shí)間點(diǎn),類似百分比
* @param t
*/
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
final float fromDegrees = mFromDegrees;
float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);
final float centerX = mCenterX;
final float centerY = mCenterY;
final Camera camera = mCamera;
final Matrix matrix = t.getMatrix();
camera.save();
if (mReverse) {//遠(yuǎn)離
camera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);
} else {//靠近
camera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));
}
camera.rotateY(degrees);
camera.getMatrix(matrix);
camera.restore();
//移動旋轉(zhuǎn)中心到布局中心
matrix.preTranslate(-centerX, -centerY);
matrix.postTranslate(centerX, centerY);
}
}
注意:使用的是graphics里的Camera而不是hardware里的
注意:其中的centerX和centerY是中心點(diǎn)位置。由于Camera的變換是以(0,0)點(diǎn)為原點(diǎn),所以需要進(jìn)行變換。
b.調(diào)用這個Animation
final Rotate3dAnimation animation = new Rotate3dAnimation(0, 180,centerX, centerY, 0, true);
animation.setDuration(500);//動畫持續(xù)時(shí)間,默認(rèn)為0
animation.setFillAfter(true);//這個false的話動畫完了會復(fù)原
mButton.startAnimation(animation);
嗯,這樣按鈕就翻轉(zhuǎn)了。
3.接下來做出按鈕切換的效果
這里有兩種方法??梢允褂脙蓚€按鈕一起翻轉(zhuǎn),也可以一個按鈕翻90后改變樣式再翻回來。
我這里使用一個按鈕的方案。
先設(shè)置兩種狀態(tài)的動畫。(注意在onMeasure后設(shè)置,不然中心位置定位到0,0了)
animationF = new Rotate3dAnimation(0, 90,centerX, centerY, 0, true);
animationF.setDuration(500);//動畫持續(xù)時(shí)間,默認(rèn)為0
animationF.setFillAfter(true);//這個false的話動畫完了會復(fù)原
animationB = new Rotate3dAnimation(-90, 0,centerX, centerY, 0, true);
animationB.setDuration(500);
animationB.setFillAfter(true);
給0-90度翻轉(zhuǎn)的動畫增加監(jiān)聽,動畫完成時(shí)根據(jù)狀態(tài)標(biāo)識改變樣式和文字,然后再從-90-0度翻轉(zhuǎn)的動畫。
animationF.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
}
@Override
public void onAnimationEnd(Animation animation) {
if (!showBack) {
buttonText.setText("BACK BUTTON");
mButton.setBackgroundColor(getResources().getColor(R.color.colorAccent));
} else { // 背面朝上
buttonText.setText("FRONT BUTTON");
mButton.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
}
mButton.startAnimation(animationB);
}
@Override
public void onAnimationRepeat(Animation animation) {
}
});
三.一個問題:顯示不全
翻轉(zhuǎn)的時(shí)候發(fā)現(xiàn)3d變換擴(kuò)大了的部分超過了空間原先的顯示區(qū)域而沒有顯示出來。
這里涉及到margin和padding的處理。
先給mButton的布局增加margin。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<FrameLayout
android:id="@+id/mButton"
android:layout_margin="100dp"
android:background="@color/colorPrimary"
android:padding="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/buttonText"
android:text="FRONT BUTTON"
android:gravity="center"
android:textColor="@android:color/white"
android:layout_width="100dp"
android:layout_height="50dp" />
</FrameLayout>
</LinearLayout>
在onMeasure處理自定義view的margin和padding。
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
measureChildren(widthMeasureSpec, heightMeasureSpec);
centerX=mButton.getMeasuredWidth()/ 2;
centerY=mButton.getMeasuredHeight() / 2;
mWidth = 0;
mHeight = 0;
//margin
marginLeft = 0;
marginTop = 0;
marginRight = 0;
marginBottom = 0;
//padding
paddingLeft = getPaddingLeft();
paddingTop = getPaddingTop();
paddingRight = getPaddingRight();
paddingBottom = getPaddingBottom();
int childCount = getChildCount();
for (int i = 0; i < childCount; i++) {
View childView = getChildAt(i);
MarginLayoutParams lp = (MarginLayoutParams) childView.getLayoutParams();
measureChild(childView, widthMeasureSpec, heightMeasureSpec);
viewsHeight += childView.getMeasuredHeight();
viewsWidth = Math.max(viewsWidth, childView.getMeasuredWidth());
marginLeft = Math.max(0,lp.leftMargin);//最大左邊距
marginTop += lp.topMargin;//上邊距之和
marginRight = Math.max(0,lp.rightMargin);//最大右邊距
marginBottom += lp.bottomMargin;//下邊距之和
}
mWidth = getMeasuredWidth() + paddingLeft + paddingRight + marginLeft + marginRight;
mHeight = getMeasuredHeight() + paddingBottom + paddingTop + marginTop + marginBottom;
setMeasuredDimension(measureWidth(widthMeasureSpec, mWidth), measureHeight(heightMeasureSpec, mHeight));
//動畫
animationF = new Rotate3dAnimation(0, 90,centerX, centerY, 0, true);
animationF.setDuration(500);//動畫持續(xù)時(shí)間,默認(rèn)為0
animationF.setFillAfter(true);//這個false的話動畫完了會復(fù)原
animationB = new Rotate3dAnimation(-90, 0,centerX, centerY, 0, true);
animationB.setDuration(500);
animationB.setFillAfter(true);
animationF.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
}
@Override
public void onAnimationEnd(Animation animation) {
if (showBack) {
buttonText.setText("BACK BUTTON");
mButton.setBackgroundColor(getResources().getColor(R.color.colorAccent));
} else { // 背面朝上
buttonText.setText("FRONT BUTTON");
mButton.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
}
mButton.startAnimation(animationB);
}
@Override
public void onAnimationRepeat(Animation animation) {
}
});
}
相關(guān)github項(xiàng)目地址:flippedButton
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android右滑返回上一個界面的實(shí)現(xiàn)方法
這篇文章主要介紹了Android右滑返回上一個界面的實(shí)現(xiàn)方法的相關(guān)資料,希望通過本文能幫助到大家,讓大家實(shí)現(xiàn)這樣的功能,需要的朋友可以參考下2017-10-10
在Android項(xiàng)目中使用AspectJ的方法
這篇文章主要介紹了在Android項(xiàng)目中使用AspectJ的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-04-04
Android自定義View實(shí)現(xiàn)shape圖形繪制
這篇文章主要為大家詳細(xì)介紹了Android使用自定義View實(shí)現(xiàn)shape圖形繪制,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-01-01
Android 如何實(shí)現(xiàn)exclude aar包中的某個jar包
這篇文章主要介紹了Android 如何實(shí)現(xiàn)exclude aar包中的某個jar包,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-03-03
Libgdx解決部分Android機(jī)型鎖屏崩潰的方法
今天小編就為大家分享一篇關(guān)于Libgdx解決部分Android機(jī)型鎖屏崩潰的方法,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧2018-10-10
Android Activity的生命周期與啟動模式全面解讀
雖然說我們天天都在使用Activity,但是你真的對Activity的生命機(jī)制完全了解了嗎?Activity的生命周期方法只有七個,但是其實(shí)那只是默認(rèn)的情況。也就是說在其他情況下,Activity的生命周期可能不會是按照我們以前所知道的流程,這就要說到Activity的啟動模式2021-10-10
Android LayerDrawable超詳細(xì)講解
一個LayerDrawable是一個可以管理一組drawable對象的drawable。在LayerDrawable的drawable資源按照列表的順序繪制,所以列表的最后一個drawable繪制在最上層2022-11-11
Android?App頁面滑動標(biāo)題欄顏色漸變詳解
這篇文章主要為大家詳細(xì)介紹了Android?App頁面滑動標(biāo)題欄顏色漸變,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-02-02

