এই উদাহরণটি দেখায় কিভাবে অ্যান্ড্রয়েডে একটি মসৃণ ইমেজ রোটেশন করা যায়।
ধাপ 1 - অ্যান্ড্রয়েড স্টুডিওতে একটি নতুন প্রকল্প তৈরি করুন, ফাইল ⇒ নতুন প্রকল্পে যান এবং একটি নতুন প্রকল্প তৈরি করতে প্রয়োজনীয় সমস্ত বিবরণ পূরণ করুন৷
ধাপ 2 - নিম্নলিখিত কোডটি res/layout/activity_main.xml এ যোগ করুন।
<?xml version = "1.0" encoding = "utf-8"?> <LinearLayout xmlns:android = "https://schemas.android.com/apk/res/android" android:id = "@+id/parent" xmlns:tools = "https://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = ".MainActivity" android:gravity = "center" android:orientation = "vertical"> <TextView android:id = "@+id/text" android:textSize = "18sp" android:textAlignment = "center" android:text = "rorate image" android:layout_width = "match_parent" android:layout_height = "wrap_content" /> <ImageView android:id = "@+id/rotateImage" android:layout_width = "match_parent" android:layout_marginTop = "10dp" android:layout_height = "wrap_content" android:src = "@mipmap/ic_launcher" android:layerType = "software" /> </LinearLayout>
উপরের কোডে, আমরা একটি টেক্সট ভিউ এবং ইমেজ ভিউ নিয়েছি। আপনি যখন টেক্সট ভিউতে ক্লিক করবেন, তখন ইমেজ অ্যান্টি ক্লক ডিরেকশনে ঘুরবে।
ধাপ 3 - নিম্নলিখিত কোডটি src/MainActivity.java
এ যোগ করুনpackage com.example.andy.myapplication; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.view.animation.Animation; import android.view.animation.LinearInterpolator; import android.view.animation.RotateAnimation; import android.widget.ImageView; import android.widget.TextView; public class MainActivity extends AppCompatActivity { int view = R.layout.activity_main; TextView text; ImageView image; @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(view); text = findViewById(R.id.text); image = findViewById(R.id.rotateImage); text.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { RotateAnimation rotate = new RotateAnimation(0, 180, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); rotate.setDuration(5000); rotate.setInterpolator(new LinearInterpolator()); image.startAnimation(rotate); } }); } }
উপরের কোডে আমরা Rotate Animation ক্লাস ব্যবহার করেছি। এটি অ্যান্ড্রয়েডের একটি পূর্বনির্ধারিত ক্লাস। নিচের কোডটি ব্যবহার করে একটি ছবি ঘোরাতে -
RotateAnimation rotate = new RotateAnimation(0, 180, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); rotate.setDuration(5000); rotate.setInterpolator(new LinearInterpolator()); image.startAnimation(rotate);
আপনার অ্যাপ্লিকেশন চালানোর চেষ্টা করা যাক. আমি ধরে নিচ্ছি আপনি আপনার কম্পিউটারের সাথে আপনার আসল অ্যান্ড্রয়েড মোবাইল ডিভাইসটি সংযুক্ত করেছেন৷ অ্যান্ড্রয়েড স্টুডিও থেকে অ্যাপটি চালাতে, আপনার প্রোজেক্টের অ্যাক্টিভিটি ফাইলগুলির একটি খুলুন এবং টুলবার থেকে রান আইকনে ক্লিক করুন। একটি বিকল্প হিসাবে আপনার মোবাইল ডিভাইস নির্বাচন করুন এবং তারপর আপনার মোবাইল ডিভাইসটি পরীক্ষা করুন যা আপনার ডিফল্ট স্ক্রীন প্রদর্শন করবে -
উপরের কোডে, এটি একটি প্রাথমিক স্ক্রীন দেখায় যখন ব্যবহারকারী টেক্সট ভিউতে ক্লিক করেন, এটি নীচের চিত্রের মত করে ঘোরানো হবে -