অ্যানিমেশন ব্যবহার করে একটি দৃশ্য প্রকাশ বা লুকান

রচনা পদ্ধতি চেষ্টা করুন
জেটপ্যাক কম্পোজ হল Android এর জন্য প্রস্তাবিত UI টুলকিট। কম্পোজে অ্যানিমেশন কীভাবে ব্যবহার করবেন তা শিখুন।

আপনার অ্যাপ ব্যবহার করার সময়, স্ক্রিনে নতুন তথ্য উপস্থিত হয় এবং পুরানো তথ্য সরানো হয়। অবিলম্বে স্ক্রিনে যা দেখায় তা পরিবর্তন করা বিরক্তিকর হতে পারে এবং ব্যবহারকারীরা হঠাৎ প্রদর্শিত নতুন সামগ্রী মিস করতে পারেন। অ্যানিমেশনগুলি পরিবর্তনগুলিকে ধীর করে দেয় এবং গতির সাথে ব্যবহারকারীর চোখ আঁকে যাতে আপডেটগুলি আরও স্পষ্ট হয়৷

তিনটি সাধারণ অ্যানিমেশন রয়েছে যা আপনি একটি দৃশ্য দেখাতে বা লুকানোর জন্য ব্যবহার করতে পারেন: অ্যানিমেশন প্রকাশ করুন, ক্রসফেড অ্যানিমেশন এবং কার্ডফ্লিপ অ্যানিমেশন।

একটি ক্রসফেড অ্যানিমেশন তৈরি করুন

একটি ক্রসফেড অ্যানিমেশন — যাকে দ্রবীভূত করাও বলা হয় — ধীরে ধীরে একটি View বা ViewGroup বিবর্ণ করে যখন একই সাথে অন্যটিতে বিবর্ণ হয়ে যায়। এই অ্যানিমেশনটি এমন পরিস্থিতিতে উপযোগী যেখানে আপনি আপনার অ্যাপে কন্টেন্ট বা ভিউ পরিবর্তন করতে চান। এখানে দেখানো ক্রসফেড অ্যানিমেশনটি ViewPropertyAnimator ব্যবহার করে, যা Android 3.1 (API স্তর 12) এবং উচ্চতর জন্য উপলব্ধ৷

এখানে একটি অগ্রগতি সূচক থেকে পাঠ্য সামগ্রীতে ক্রসফেডের একটি উদাহরণ রয়েছে:

চিত্র 1. ক্রসফেড অ্যানিমেশন।

দৃষ্টিভঙ্গি তৈরি করুন

আপনি ক্রসফেড করতে চান এমন দুটি দৃশ্য তৈরি করুন। নিম্নলিখিত উদাহরণটি একটি অগ্রগতি সূচক এবং একটি স্ক্রোলযোগ্য পাঠ্য দৃশ্য তৈরি করে:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView style="?android:textAppearanceMedium"
            android:lineSpacingMultiplier="1.2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/lorem_ipsum"
            android:padding="16dp" />

    </ScrollView>

    <ProgressBar android:id="@+id/loading_spinner"
        style="?android:progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center" />

</FrameLayout>

ক্রসফেড অ্যানিমেশন সেট আপ করুন

ক্রসফেড অ্যানিমেশন সেট আপ করতে, নিম্নলিখিতগুলি করুন:

  1. আপনি ক্রসফেড করতে চান এমন ভিউগুলির জন্য সদস্য ভেরিয়েবল তৈরি করুন। অ্যানিমেশনের সময় ভিউ পরিবর্তন করার সময় আপনার এই রেফারেন্সগুলির প্রয়োজন পরে৷
  2. যে দৃশ্যটি বিবর্ণ হয়ে যাচ্ছে তার দৃশ্যমানতা GONE এ সেট করুন। এটি ভিউটিকে লেআউট স্পেস ব্যবহার করতে বাধা দেয় এবং লেআউট গণনা থেকে বাদ দেয়, যা প্রক্রিয়াকরণের গতি বাড়ায়
  3. একটি সদস্য ভেরিয়েবলে config_shortAnimTime সিস্টেম বৈশিষ্ট্য ক্যাশে করুন। এই বৈশিষ্ট্যটি অ্যানিমেশনের জন্য একটি আদর্শ "সংক্ষিপ্ত" সময়কাল সংজ্ঞায়িত করে। এই সময়কালটি ঘন ঘন ঘটতে থাকা সূক্ষ্ম অ্যানিমেশন বা অ্যানিমেশনগুলির জন্য আদর্শ। config_longAnimTime এবং config_mediumAnimTime এছাড়াও উপলব্ধ।

কার্যকলাপ বিষয়বস্তু ভিউ হিসাবে পূর্ববর্তী কোড স্নিপেট থেকে লেআউট ব্যবহার করে এখানে একটি উদাহরণ:

কোটলিন

class CrossfadeActivity : Activity() {

    private lateinit var contentView: View
    private lateinit var loadingView: View
    private var shortAnimationDuration: Int = 0
    ...
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_crossfade)

        contentView = findViewById(R.id.content)
        loadingView = findViewById(R.id.loading_spinner)

        // Initially hide the content view.
        contentView.visibility = View.GONE

        // Retrieve and cache the system's default "short" animation time.
        shortAnimationDuration = resources.getInteger(android.R.integer.config_shortAnimTime)
    }
    ...
}

জাভা

public class CrossfadeActivity extends Activity {

    private View contentView;
    private View loadingView;
    private int shortAnimationDuration;
    ...
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_crossfade);

        contentView = findViewById(R.id.content);
        loadingView = findViewById(R.id.loading_spinner);

        // Initially hide the content view.
        contentView.setVisibility(View.GONE);

        // Retrieve and cache the system's default "short" animation time.
        shortAnimationDuration = getResources().getInteger(
                android.R.integer.config_shortAnimTime);
    }
    ...
}

দৃষ্টিভঙ্গি ক্রসফেড

যখন দৃশ্যগুলি সঠিকভাবে সেট আপ করা হয়, তখন নিম্নলিখিতগুলি করে তাদের ক্রসফেড করুন:

  1. যে দৃশ্যটি বিবর্ণ হয়ে যাচ্ছে তার জন্য, আলফা মানটি 0 এ সেট করুন এবং দৃশ্যমানতাটি GONE এর প্রাথমিক সেটিং থেকে VISIBLE তে সেট করুন। এটি দৃশ্যটিকে দৃশ্যমান কিন্তু স্বচ্ছ করে তোলে।
  2. ম্লান হওয়া ভিউটির জন্য, এর আলফা মান 0 থেকে 1 পর্যন্ত অ্যানিমেট করুন। যে ভিউটি বিবর্ণ হচ্ছে তার জন্য, 1 থেকে 0 পর্যন্ত আলফা মান অ্যানিমেট করুন।
  3. একটি Animator.AnimatorListeneronAnimationEnd() ব্যবহার করে, GONE এ বিবর্ণ হয়ে যাওয়া ভিউটির দৃশ্যমানতা সেট করুন। যদিও আলফা মান 0, ভিউটির দৃশ্যমানতা GONE এ সেট করা দৃশ্যটিকে লেআউট স্পেস ব্যবহার করতে বাধা দেয় এবং লেআউট গণনা থেকে বাদ দেয়, যা প্রক্রিয়াকরণের গতি বাড়ায়।

নিম্নলিখিত পদ্ধতিটি কীভাবে এটি করতে হয় তার একটি উদাহরণ দেখায়:

কোটলিন

class CrossfadeActivity : Activity() {

    private lateinit var contentView: View
    private lateinit var loadingView: View
    private var shortAnimationDuration: Int = 0
    ...
    private fun crossfade() {
        contentView.apply {
            // Set the content view to 0% opacity but visible, so that it is
            // visible but fully transparent during the animation.
            alpha = 0f
            visibility = View.VISIBLE

            // Animate the content view to 100% opacity and clear any animation
            // listener set on the view.
            animate()
                    .alpha(1f)
                    .setDuration(shortAnimationDuration.toLong())
                    .setListener(null)
        }
        // Animate the loading view to 0% opacity. After the animation ends,
        // set its visibility to GONE as an optimization step so it doesn't
        // participate in layout passes.
        loadingView.animate()
                .alpha(0f)
                .setDuration(shortAnimationDuration.toLong())
                .setListener(object : AnimatorListenerAdapter() {
                    override fun onAnimationEnd(animation: Animator) {
                        loadingView.visibility = View.GONE
                    }
                })
    }
}

জাভা

public class CrossfadeActivity extends Activity {

    private View contentView;
    private View loadingView;
    private int shortAnimationDuration;
    ...
    private void crossfade() {

        // Set the content view to 0% opacity but visible, so that it is
        // visible but fully transparent during the animation.
        contentView.setAlpha(0f);
        contentView.setVisibility(View.VISIBLE);

        // Animate the content view to 100% opacity and clear any animation
        // listener set on the view.
        contentView.animate()
                .alpha(1f)
                .setDuration(shortAnimationDuration)
                .setListener(null);

        // Animate the loading view to 0% opacity. After the animation ends,
        // set its visibility to GONE as an optimization step so it doesn't
        // participate in layout passes.
        loadingView.animate()
                .alpha(0f)
                .setDuration(shortAnimationDuration)
                .setListener(new AnimatorListenerAdapter() {
                    @Override
                    public void onAnimationEnd(Animator animation) {
                        loadingView.setVisibility(View.GONE);
                    }
                });
    }
}

একটি কার্ড ফ্লিপ অ্যানিমেশন তৈরি করুন

কার্ড ফ্লিপগুলি একটি অ্যানিমেশন দেখানোর মাধ্যমে বিষয়বস্তুর ভিউগুলির মধ্যে স্যুইচ করে যা একটি কার্ড উল্টানো অনুকরণ করে৷ এখানে দেখানো কার্ড ফ্লিপ অ্যানিমেশনটি FragmentTransaction ব্যবহার করে।

একটি কার্ড ফ্লিপ দেখতে কেমন তা এখানে:

চিত্র 2. কার্ড ফ্লিপ অ্যানিমেশন।

অ্যানিমেটর অবজেক্ট তৈরি করুন

কার্ড ফ্লিপ অ্যানিমেশন তৈরি করতে, আপনার চারটি অ্যানিমেটর প্রয়োজন। দুটি অ্যানিমেটর হল যখন কার্ডের সামনের অংশটি বাম দিকে অ্যানিমেট করে এবং যখন এটি বাম দিকে এবং ভিতরে অ্যানিমেট করে। অন্য দুটি অ্যানিমেটর হল যখন কার্ডের পিছনের অংশটি ডানে এবং থেকে অ্যানিমেট হয় এবং কখন এটি বাইরে এবং ডানদিকে অ্যানিমেট হয়৷

card_flip_left_in.xml

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Before rotating, immediately set the alpha to 0. -->
    <objectAnimator
        android:valueFrom="1.0"
        android:valueTo="0.0"
        android:propertyName="alpha"
        android:duration="0" />

    <!-- Rotate. -->
    <objectAnimator
        android:valueFrom="-180"
        android:valueTo="0"
        android:propertyName="rotationY"
        android:interpolator="@android:interpolator/accelerate_decelerate"
        android:duration="@integer/card_flip_time_full" />

    <!-- Halfway through the rotation, set the alpha to 1. See startOffset. -->
    <objectAnimator
        android:valueFrom="0.0"
        android:valueTo="1.0"
        android:propertyName="alpha"
        android:startOffset="@integer/card_flip_time_half"
        android:duration="1" />
</set>

card_flip_left_out.xml

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Rotate. -->
    <objectAnimator
        android:valueFrom="0"
        android:valueTo="180"
        android:propertyName="rotationY"
        android:interpolator="@android:interpolator/accelerate_decelerate"
        android:duration="@integer/card_flip_time_full" />

    <!-- Halfway through the rotation, set the alpha to 0. See startOffset. -->
    <objectAnimator
        android:valueFrom="1.0"
        android:valueTo="0.0"
        android:propertyName="alpha"
        android:startOffset="@integer/card_flip_time_half"
        android:duration="1" />
</set>

card_flip_right_in.xml

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Before rotating, immediately set the alpha to 0. -->
    <objectAnimator
        android:valueFrom="1.0"
        android:valueTo="0.0"
        android:propertyName="alpha"
        android:duration="0" />

    <!-- Rotate. -->
    <objectAnimator
        android:valueFrom="180"
        android:valueTo="0"
        android:propertyName="rotationY"
        android:interpolator="@android:interpolator/accelerate_decelerate"
        android:duration="@integer/card_flip_time_full" />

    <!-- Halfway through the rotation, set the alpha to 1. See startOffset. -->
    <objectAnimator
        android:valueFrom="0.0"
        android:valueTo="1.0"
        android:propertyName="alpha"
        android:startOffset="@integer/card_flip_time_half"
        android:duration="1" />
</set>

card_flip_right_out.xml

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Rotate. -->
    <objectAnimator
        android:valueFrom="0"
        android:valueTo="-180"
        android:propertyName="rotationY"
        android:interpolator="@android:interpolator/accelerate_decelerate"
        android:duration="@integer/card_flip_time_full" />

    <!-- Halfway through the rotation, set the alpha to 0. See startOffset. -->
    <objectAnimator
        android:valueFrom="1.0"
        android:valueTo="0.0"
        android:propertyName="alpha"
        android:startOffset="@integer/card_flip_time_half"
        android:duration="1" />
</set>

দৃষ্টিভঙ্গি তৈরি করুন

কার্ডের প্রতিটি দিক হল একটি আলাদা লেআউট যাতে আপনার পছন্দের যেকোন বিষয়বস্তু থাকতে পারে, যেমন দুটি টেক্সট ভিউ, দুটি ইমেজ বা ভিউয়ের যেকোন সমন্বয়ের মধ্যে ফ্লিপ করার জন্য। আপনি পরে অ্যানিমেট যে টুকরা টুকরা দুটি লেআউট ব্যবহার করুন. নিম্নলিখিত লেআউটটি একটি কার্ডের একপাশে তৈরি করে, যা পাঠ্য দেখায়:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#a6c"
    android:padding="16dp"
    android:gravity="bottom">

    <TextView android:id="@android:id/text1"
        style="?android:textAppearanceLarge"
        android:textStyle="bold"
        android:textColor="#fff"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/card_back_title" />

    <TextView style="?android:textAppearanceSmall"
        android:textAllCaps="true"
        android:textColor="#80ffffff"
        android:textStyle="bold"
        android:lineSpacingMultiplier="1.2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/card_back_description" />

</LinearLayout>

এবং পরবর্তী লেআউট কার্ডের অন্য দিকে তৈরি করে, যা একটি ImageView প্রদর্শন করে:

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/image1"
    android:scaleType="centerCrop"
    android:contentDescription="@string/description_image_1" />

টুকরা তৈরি করুন

কার্ডের সামনে এবং পিছনের জন্য টুকরো ক্লাস তৈরি করুন। আপনার ফ্র্যাগমেন্ট ক্লাসে, আপনি onCreateView() পদ্ধতি থেকে তৈরি করা লেআউটগুলি ফিরিয়ে দিন। তারপরে আপনি প্যারেন্ট অ্যাক্টিভিটি যেখানে আপনি কার্ডটি দেখাতে চান সেখানে এই টুকরোটির উদাহরণ তৈরি করতে পারেন।

নিম্নলিখিত উদাহরণটি তাদের ব্যবহার করে এমন অভিভাবক কার্যকলাপের ভিতরে নেস্টেড ফ্র্যাগমেন্ট ক্লাসগুলি দেখায়:

কোটলিন

class CardFlipActivity : FragmentActivity() {
    ...
    /**

                    *   A fragment representing the front of the card.
     */
    class CardFrontFragment : Fragment() {

    override fun onCreateView(
                inflater: LayoutInflater,
                container: ViewGroup?,
                savedInstanceState: Bundle?
    ): View = inflater.inflate(R.layout.fragment_card_front, container, false)
    }

    /**
    *   A fragment representing the back of the card.
    */
    class CardBackFragment : Fragment() {

    override fun onCreateView(
                inflater: LayoutInflater,
                container: ViewGroup?,
                savedInstanceState: Bundle?
    ): View = inflater.inflate(R.layout.fragment_card_back, container, false)
    }
}

জাভা

public class CardFlipActivity extends FragmentActivity {
    ...
    /**
    *   A fragment representing the front of the card.
    */
    public class CardFrontFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            return inflater.inflate(R.layout.fragment_card_front, container, false);
    }
    }

    /**
    *   A fragment representing the back of the card.
    */
    public class CardBackFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            return inflater.inflate(R.layout.fragment_card_back, container, false);
    }
    }
}

কার্ড উল্টানো অ্যানিমেট

একটি অভিভাবক কার্যকলাপের মধ্যে টুকরা প্রদর্শন. এটি করার জন্য, আপনার কার্যকলাপের জন্য লেআউট তৈরি করুন। নিম্নলিখিত উদাহরণটি একটি FrameLayout তৈরি করে যা আপনি রানটাইমে টুকরা যোগ করতে পারেন:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

অ্যাক্টিভিটি কোডে, আপনার তৈরি করা লেআউট হিসেবে কন্টেন্ট ভিউ সেট করুন। যখন কার্যকলাপ তৈরি করা হয় তখন একটি ডিফল্ট টুকরা দেখানোর জন্য এটি ভাল অনুশীলন। নিম্নলিখিত উদাহরণ কার্যকলাপ দেখায় কিভাবে ডিফল্টরূপে কার্ডের সামনে প্রদর্শন করতে হয়:

কোটলিন

class CardFlipActivity : FragmentActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_activity_card_flip)
        if (savedInstanceState == null) {
            supportFragmentManager.beginTransaction()
                    .add(R.id.container, CardFrontFragment())
                    .commit()
        }
    }
    ...
}

জাভা

public class CardFlipActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_activity_card_flip);

        if (savedInstanceState == null) {
            getSupportFragmentManager()
                    .beginTransaction()
                    .add(R.id.container, new CardFrontFragment())
                    .commit();
        }
    }
    ...
}

কার্ডের সামনে দেখানোর সাথে, আপনি একটি উপযুক্ত সময়ে ফ্লিপ অ্যানিমেশন সহ কার্ডের পিছনে দেখাতে পারেন। কার্ডের অন্য দিকটি দেখানোর জন্য একটি পদ্ধতি তৈরি করুন যা নিম্নলিখিত জিনিসগুলি করে:

  • খণ্ড পরিবর্তনের জন্য আপনি যে কাস্টম অ্যানিমেশন তৈরি করেছেন তা সেট করে।
  • প্রদর্শিত খণ্ডটিকে একটি নতুন খণ্ড দিয়ে প্রতিস্থাপন করে এবং আপনার তৈরি কাস্টম অ্যানিমেশনগুলির সাথে এই ইভেন্টটিকে অ্যানিমেট করে৷
  • ফ্র্যাগমেন্ট ব্যাক স্ট্যাকে পূর্বে প্রদর্শিত ফ্র্যাগমেন্ট যোগ করে, তাই যখন ব্যবহারকারী ব্যাক বোতামে ট্যাপ করে, কার্ডটি আবার উল্টে যায়।

কোটলিন

class CardFlipActivity : FragmentActivity() {
    ...
    private fun flipCard() {
        if (showingBack) {
            supportFragmentManager.popBackStack()
            return
        }

        // Flip to the back.

        showingBack = true

        // Create and commit a new fragment transaction that adds the fragment
        // for the back of the card, uses custom animations, and is part of the
        // fragment manager's back stack.

        supportFragmentManager.beginTransaction()

                // Replace the default fragment animations with animator
                // resources representing rotations when switching to the back
                // of the card, as well as animator resources representing
                // rotations when flipping back to the front, such as when the
                // system Back button is tapped.
                .setCustomAnimations(
                        R.animator.card_flip_right_in,
                        R.animator.card_flip_right_out,
                        R.animator.card_flip_left_in,
                        R.animator.card_flip_left_out
                )

                // Replace any fragments in the container view with a fragment
                // representing the next page, indicated by the just-incremented
                // currentPage variable.
                .replace(R.id.container, CardBackFragment())

                // Add this transaction to the back stack, letting users press
                // the Back button to get to the front of the card.
                .addToBackStack(null)

                // Commit the transaction.
                .commit()
    }
}

জাভা

public class CardFlipActivity extends FragmentActivity {
    ...
    private void flipCard() {
        if (showingBack) {
            getSupportFragmentManager().popBackStack();
            return;
        }

        // Flip to the back.

        showingBack = true;

        // Create and commit a new fragment transaction that adds the fragment
        // for the back of the card, uses custom animations, and is part of the
        // fragment manager's back stack.

        getSupportFragmentManager()
                .beginTransaction()

                // Replace the default fragment animations with animator
                // resources representing rotations when switching to the back
                // of the card, as well as animator resources representing
                // rotations when flipping back to the front, such as when the
                // system Back button is pressed.
                .setCustomAnimations(
                        R.animator.card_flip_right_in,
                        R.animator.card_flip_right_out,
                        R.animator.card_flip_left_in,
                        R.animator.card_flip_left_out)

                // Replace any fragments in the container view with a fragment
                // representing the next page, indicated by the just-incremented
                // currentPage variable.
                .replace(R.id.container, new CardBackFragment())

                // Add this transaction to the back stack, letting users press
                // Back to get to the front of the card.
                .addToBackStack(null)

                // Commit the transaction.
                .commit();
    }
}

একটি সার্কুলার রিভিল অ্যানিমেশন তৈরি করুন

আপনি যখন UI উপাদানগুলির একটি গ্রুপ দেখান বা লুকান তখন প্রকাশ অ্যানিমেশনগুলি ব্যবহারকারীদের ভিজ্যুয়াল ধারাবাহিকতা প্রদান করে৷ ViewAnimationUtils.createCircularReveal() পদ্ধতি আপনাকে একটি ভিউ প্রকাশ বা লুকানোর জন্য একটি ক্লিপিং সার্কেল অ্যানিমেট করতে দেয়। এই অ্যানিমেশনটি ViewAnimationUtils ক্লাসে সরবরাহ করা হয়েছে, যা Android 5.0 (API স্তর 21) এবং উচ্চতর সংস্করণের জন্য উপলব্ধ।

এখানে একটি উদাহরণ দেখানো হয়েছে যে কীভাবে পূর্বে অদৃশ্য দৃশ্য প্রকাশ করা যায়:

কোটলিন

// A previously invisible view.
val myView: View = findViewById(R.id.my_view)

// Check whether the runtime version is at least Android 5.0.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    // Get the center for the clipping circle.
    val cx = myView.width / 2
    val cy = myView.height / 2

    // Get the final radius for the clipping circle.
    val finalRadius = Math.hypot(cx.toDouble(), cy.toDouble()).toFloat()

    // Create the animator for this view. The start radius is 0.
    val anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, 0f, finalRadius)
    // Make the view visible and start the animation.
    myView.visibility = View.VISIBLE
    anim.start()
} else {
    // Set the view to invisible without a circular reveal animation below
    // Android 5.0.
    myView.visibility = View.INVISIBLE
}

জাভা

// A previously invisible view.
View myView = findViewById(R.id.my_view);

// Check whether the runtime version is at least Android 5.0.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    // Get the center for the clipping circle.
    int cx = myView.getWidth() / 2;
    int cy = myView.getHeight() / 2;

    // Get the final radius for the clipping circle.
    float finalRadius = (float) Math.hypot(cx, cy);

    // Create the animator for this view. The start radius is 0.
    Animator anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, 0f, finalRadius);

    // Make the view visible and start the animation.
    myView.setVisibility(View.VISIBLE);
    anim.start();
} else {
    // Set the view to invisible without a circular reveal animation below
    // Android 5.0.
    myView.setVisibility(View.INVISIBLE);
}

ViewAnimationUtils.createCircularReveal() অ্যানিমেশন পাঁচটি প্যারামিটার নেয়। প্রথম প্যারামিটারটি হল সেই দৃশ্য যা আপনি লুকাতে বা পর্দায় দেখাতে চান। পরবর্তী দুটি পরামিতি হল ক্লিপিং বৃত্তের কেন্দ্রের জন্য X এবং Y স্থানাঙ্ক। সাধারণত, এটি ভিউয়ের কেন্দ্র, তবে আপনি যে পয়েন্টটি ব্যবহারকারী ট্যাপ করেন সেটিও ব্যবহার করতে পারেন যাতে অ্যানিমেশনটি যেখানে তারা নির্বাচন করে সেখানে শুরু হয়। চতুর্থ প্যারামিটার হল ক্লিপিং বৃত্তের প্রারম্ভিক ব্যাসার্ধ।

পূর্ববর্তী উদাহরণে, প্রাথমিক ব্যাসার্ধটি শূন্যে সেট করা হয়েছে যাতে প্রদর্শিত দৃশ্যটি বৃত্ত দ্বারা লুকানো হয়। শেষ প্যারামিটার হল বৃত্তের চূড়ান্ত ব্যাসার্ধ। একটি দৃশ্য প্রদর্শন করার সময়, চূড়ান্ত ব্যাসার্ধটি দৃশ্যের চেয়ে বড় করুন যাতে অ্যানিমেশন শেষ হওয়ার আগে দৃশ্যটি সম্পূর্ণরূপে প্রকাশ করা যায়।

পূর্বে দৃশ্যমান দৃশ্য লুকানোর জন্য, নিম্নলিখিতগুলি করুন:

কোটলিন

// A previously visible view.
val myView: View = findViewById(R.id.my_view)

// Check whether the runtime version is at least Android 5.0.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    // Get the center for the clipping circle.
    val cx = myView.width / 2
    val cy = myView.height / 2

    // Get the initial radius for the clipping circle.
    val initialRadius = Math.hypot(cx.toDouble(), cy.toDouble()).toFloat()

    // Create the animation. The final radius is 0.
    val anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, initialRadius, 0f)

    // Make the view invisible when the animation is done.
    anim.addListener(object : AnimatorListenerAdapter() {

        override fun onAnimationEnd(animation: Animator) {
            super.onAnimationEnd(animation)
            myView.visibility = View.INVISIBLE
        }
    })

    // Start the animation.
    anim.start()
} else {
    // Set the view to visible without a circular reveal animation below
    // Android 5.0.
    myView.visibility = View.VISIBLE
}

জাভা

// A previously visible view.
final View myView = findViewById(R.id.my_view);

// Check whether the runtime version is at least Android 5.0.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    // Get the center for the clipping circle.
    int cx = myView.getWidth() / 2;
    int cy = myView.getHeight() / 2;

    // Get the initial radius for the clipping circle.
    float initialRadius = (float) Math.hypot(cx, cy);

    // Create the animation. The final radius is 0.
    Animator anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, initialRadius, 0f);

    // Make the view invisible when the animation is done.
    anim.addListener(new AnimatorListenerAdapter() {
        @Override
        public void onAnimationEnd(Animator animation) {
            super.onAnimationEnd(animation);
            myView.setVisibility(View.INVISIBLE);
        }
    });

    // Start the animation.
    anim.start();
} else {
    // Set the view to visible without a circular reveal animation below Android
    // 5.0.
    myView.setVisibility(View.VISIBLE);
}

এই ক্ষেত্রে, ক্লিপিং বৃত্তের প্রাথমিক ব্যাসার্ধটি দৃশ্যের মতো বড় হতে সেট করা হয়েছে যাতে অ্যানিমেশন শুরু হওয়ার আগে দৃশ্যটি দৃশ্যমান হয়। চূড়ান্ত ব্যাসার্ধটি শূন্যতে সেট করা হয়েছে যাতে অ্যানিমেশন শেষ হলে দৃশ্যটি লুকানো থাকে। অ্যানিমেশনে একজন শ্রোতা যোগ করুন যাতে অ্যানিমেশন সম্পূর্ণ হলে ভিউয়ের দৃশ্যমানতা INVISIBLE সেট করা যায়।

অতিরিক্ত সম্পদ