中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android空間動畫

發布時間:2020-07-31 03:27:00 來源:網絡 閱讀:412 作者:671076656 欄目:移動開發
天在公司做項目,其中有一個模塊需要讓控件動起來

我再這里用到了動畫

先貼出代碼吧

//layout              

    android:layout_width="match_parent"

    android:layout_height="match_parent" >

                

   

        android:id="@+id/imgpic"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:scaleType="center"

        android:src="@drawable/left" >//圖片可更改

                     

                             

   

        android:id="@+id/toggleButton1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentBottom="true"

        android:layout_centerHorizontal="true"

        android:layout_marginBottom="141dp"

        android:text="ToggleButton" />

//動畫路徑 res/anim/tip.xml

 

 

   

        android:fromDegrees="0"  

        android:toDegrees="359"  

        android:duration="1000"  

        android:repeatCount="-1"  

        android:pivotX="50%"  

        android:pivotY="50%" />  

 

動畫的參數設置:

android:fromDegrees="0"   //起始角度

        android:toDegrees="359"   //結束的角度度數,負數表示逆時針,正數表示順時針。如2圈則比  //android:fromDegrees大720即可

        android:duration="1000"    //表示從android:fromDegrees轉動到android:toDegrees所花費的時間,    //單位為毫秒。可以用來計算速度。

        android:repeatCount="-1"  //重復的次數,負數表示一直旋轉

        android:pivotX="50%"      //旋轉中心的坐標

        android:pivotY="50%" /> 

//activity

package com.example.pictween;

import android.os.Bundle;

import android.app.Activity;

import android.view.Menu;

import android.view.View;

import android.view.View.OnClickListener;

import android.view.animation.Animation;

import android.view.animation.AnimationUtils;

import android.view.animation.LinearInterpolator;

import android.widget.ImageButton;

import android.widget.Toast;

import android.widget.ToggleButton;

public class MainActivity extends Activity {

private Animation operatingAnim;

private ToggleButton togbtn;

private boolean flag = false;

private ImageButton imgbtn;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

togbtn = (ToggleButton) findViewById(R.id.toggleButton1);

togbtn.setText("關閉");

imgbtn = (ImageButton) findViewById(R.id.imgpic);

operatingAnim = AnimationUtils.loadAnimation(this, R.anim.tip);  

LinearInterpolator lin = new LinearInterpolator();  

operatingAnim.setInterpolator(lin);  

togbtn.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View arg0) {

// TODO Auto-generated method stub

flag = !flag;

if(flag){

togbtn.setText("開啟");

startAnimation();

}else{

togbtn.setText("關閉");

stopAnimation();

}

}

});

}

public void startAnimation(){

if (operatingAnim != null) {  

    imgbtn.startAnimation(operatingAnim);  

}  

}

public void stopAnimation(){

imgbtn.clearAnimation();

}

}                       

android空間動畫


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

全州县| 四平市| 道孚县| 桐乡市| 安陆市| 栾川县| 沭阳县| 通河县| 皋兰县| 木里| 当雄县| 元朗区| 囊谦县| 达州市| 马鞍山市| 屏边| 申扎县| 洪洞县| 桃源县| 滁州市| 贺州市| 赤水市| 门源| 卓尼县| 卢湾区| 仁寿县| 旅游| 慈溪市| 漳浦县| 鱼台县| 洛川县| 敖汉旗| 沙田区| 汉中市| 会理县| 唐河县| 克东县| 遵化市| 锡林郭勒盟| 平利县| 潜山县|