• 5月17日学习日志


    今天学习了安卓的补间动画。

    简单布局为:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
    
        <Button
            android:id="@+id/btn_alpha"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="透明度渐变" />
    
        <Button
            android:id="@+id/btn_scale"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="缩放渐变" />
    
        <Button
            android:id="@+id/btn_tran"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="位移渐变" />
    
        <Button
            android:id="@+id/btn_rotate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="旋转渐变" />
    
        <Button
            android:id="@+id/btn_set"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="组合渐变" />
    
        <ImageView
            android:id="@+id/img_show"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="48dp"
            android:src="@mipmap/img_face" />
        
    </LinearLayout>
    public class MainActivity extends AppCompatActivity implements View.OnClickListener{
    
        private Button btn_alpha;
        private Button btn_scale;
        private Button btn_tran;
        private Button btn_rotate;
        private Button btn_set;
        private ImageView img_show;
        private Animation animation = null;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            bindViews();
        }
    
        private void bindViews() {
            btn_alpha = (Button) findViewById(R.id.btn_alpha);
            btn_scale = (Button) findViewById(R.id.btn_scale);
            btn_tran = (Button) findViewById(R.id.btn_tran);
            btn_rotate = (Button) findViewById(R.id.btn_rotate);
            btn_set = (Button) findViewById(R.id.btn_set);
            img_show = (ImageView) findViewById(R.id.img_show);
    
            btn_alpha.setOnClickListener(this);
            btn_scale.setOnClickListener(this);
            btn_tran.setOnClickListener(this);
            btn_rotate.setOnClickListener(this);
            btn_set.setOnClickListener(this);
    
        }
    
        @Override
        public void onClick(View v) {
            switch (v.getId()){
                case R.id.btn_alpha:
                    animation = AnimationUtils.loadAnimation(this,
                            R.anim.anim_alpha);
                    img_show.startAnimation(animation);
                    break;
                case R.id.btn_scale:
                    animation = AnimationUtils.loadAnimation(this,
                            R.anim.anim_scale);
                    img_show.startAnimation(animation);
                    break;
                case R.id.btn_tran:
                    animation = AnimationUtils.loadAnimation(this,
                            R.anim.anim_translate);
                    img_show.startAnimation(animation);
                    break;
                case R.id.btn_rotate:
                    animation = AnimationUtils.loadAnimation(this,
                            R.anim.anim_rotate);
                    img_show.startAnimation(animation);
                    break;
                case R.id.btn_set:
                    animation = AnimationUtils.loadAnimation(this,
                            R.anim.anim_set);
                    img_show.startAnimation(animation);
                    break;
            }
        }
    }
  • 相关阅读:
    常用数据类型占用内存大小
    A2W,W2A等的使用
    Java 注释规范
    windows WTL使用命令行参数
    C++ for循环与迭代器
    C++11 正则表达式简单运用
    LINUX部署SVN服务器
    LINUX搭建PySpider爬虫服务
    Linux常用操作指令
    Centos搭建Seafile个人网盘
  • 原文地址:https://www.cnblogs.com/20193925zxt/p/14910647.html
Copyright © 2020-2023  润新知