Computer >> Máy Tính >  >> Lập trình >> Android

Làm thế nào để hiển thị hình ảnh động xem rung / lắc trong Android?

Ví dụ này minh họa về Cách hiển thị lắc / lắc hoạt hình xem trong android.

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.

<?xml version = "1.0" encoding = "utf-8"?>
<RelativeLayout
   xmlns:android = "https://schemas.android.com/apk/res/android"
   xmlns:tools = "https://schemas.android.com/tools"
   android:layout_width = "match_parent"
   android:layout_height = "match_parent">
   <Button
      android:id = "@+id/button"
      android:layout_centerHorizontal = "true"
      android:layout_marginTop = "100dp"
      android:layout_width = "150dp"
      android:text = "Click"
      android:layout_height = "wrap_content"/>
   <ImageView
      android:id = "@+id/imageView"
      android:src = "@mipmap/ic_launcher_round"
      android:layout_width = "match_parent"
      android:layout_height = "300dp" />
</RelativeLayout>

Trong đoạn mã trên, chúng tôi đã sử dụng nút để hiển thị hoạt ảnh rung cho chế độ xem hình ảnh.

Bước 3 - Thêm mã sau vào src / MainActivity.java

package com.example.andy.myapplication;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.ScaleAnimation;
import android.view.animation.TranslateAnimation;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.LinearLayout;

public class MainActivity extends AppCompatActivity {
   ImageView view;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      view = findViewById(R.id.imageView);
      findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            Animation animShake = AnimationUtils.loadAnimation(MainActivity.this, R.anim.shake);
            view.startAnimation(animShake);
         }
      });
   }
}

Trong đoạn mã trên, khi người dùng nhấp vào nút, nó sẽ lắc imageview bằng cách sử dụng hoạt ảnh lắc, vì vậy chúng ta cần tạo một tệp có tên là lắc.xml trong thư mục anim. Thêm mã sau vào lắc.xml -

<?xml version = "1.0" encoding = "utf-8"?>
<set xmlns:android = "https://schemas.android.com/apk/res/android">
   <translate android:duration = "150"
      android:fromXDelta = "-10%"
      android:repeatCount = "5"
      android:repeatMode = "reverse"
      android:toXDelta = "10%"/>
</set>

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Làm thế nào để hiển thị hình ảnh động xem rung / lắc trong Android?

Bây giờ bấm vào nút để lắc hình nền như hình dưới đây -

Làm thế nào để hiển thị hình ảnh động xem rung / lắc trong Android?