国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android 動(dòng)畫之ScaleAnimation應(yīng)用詳解

2020-04-11 12:40:25
字體:
供稿:網(wǎng)友
android中提供了4中動(dòng)畫:
AlphaAnimation 透明度動(dòng)畫效果
ScaleAnimation 縮放動(dòng)畫效果
TranslateAnimation 位移動(dòng)畫效果
RotateAnimation 旋轉(zhuǎn)動(dòng)畫效果

本節(jié)講解ScaleAnimation 動(dòng)畫,
ScaleAnimation(float fromX, float toX, float fromY, float toY,int pivotXType, float pivotXValue, int pivotYType, float pivotYValue)
參數(shù)說明:
復(fù)制代碼 代碼如下:

float fromX 動(dòng)畫起始時(shí) X坐標(biāo)上的伸縮尺寸
float toX 動(dòng)畫結(jié)束時(shí) X坐標(biāo)上的伸縮尺寸
float fromY 動(dòng)畫起始時(shí)Y坐標(biāo)上的伸縮尺寸
float toY 動(dòng)畫結(jié)束時(shí)Y坐標(biāo)上的伸縮尺寸
int pivotXType 動(dòng)畫在X軸相對(duì)于物件位置類型
float pivotXValue 動(dòng)畫相對(duì)于物件的X坐標(biāo)的開始位置
int pivotYType 動(dòng)畫在Y軸相對(duì)于物件位置類型
float pivotYValue 動(dòng)畫相對(duì)于物件的Y坐標(biāo)的開始位置

代碼:
復(fù)制代碼 代碼如下:

public class MainActivity extends Activity {
ImageView image;
Button start;
Button cancel;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
image = (ImageView) findViewById(R.id.main_img);
start = (Button) findViewById(R.id.main_start);
cancel = (Button) findViewById(R.id.main_cancel);
/** 設(shè)置縮放動(dòng)畫 */
final ScaleAnimation animation =new ScaleAnimation(0.0f, 1.4f, 0.0f, 1.4f,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
animation.setDuration(2000);//設(shè)置動(dòng)畫持續(xù)時(shí)間
/** 常用方法 */
//animation.setRepeatCount(int repeatCount);//設(shè)置重復(fù)次數(shù)
//animation.setFillAfter(boolean);//動(dòng)畫執(zhí)行完后是否停留在執(zhí)行完的狀態(tài)
//animation.setStartOffset(long startOffset);//執(zhí)行前的等待時(shí)間
start.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
image.setAnimation(animation);
/** 開始動(dòng)畫 */
animation.startNow();
}
});
cancel.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
/** 結(jié)束動(dòng)畫 */
animation.cancel();
}
});
}
}

效果:
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 芜湖市| 辽宁省| 富阳市| 广水市| 晋宁县| 乃东县| 宁乡县| 苗栗市| 吉木乃县| 集贤县| 定远县| 津市市| 淄博市| 泸溪县| 文登市| 抚松县| 兰西县| 新乐市| 北碚区| 手游| 南雄市| 新晃| 正蓝旗| 灵川县| 手游| 红桥区| 巴东县| 阳信县| 文成县| 肥西县| 宝清县| 嘉义市| 洪洞县| 朝阳市| 阿拉善右旗| 玉门市| 新野县| 平塘县| 九龙城区| 邵武市| 长子县|