সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
কিছু Wear OS ডিভাইসে একটি ফিজিক্যাল রোটেটিং সাইড বোতাম থাকে। ব্যবহারকারী যখন বোতামটি চালু করে, তখন এটি আপনার অ্যাপের বর্তমান দৃশ্যকে উপরে বা নিচে স্ক্রোল করে। এই ধরনের ইনপুটকে রোটারি ইনপুট বলা হয়।
দ্রষ্টব্য: এই নির্দেশিকাটি মূলত ভিউ-ভিত্তিক UI ব্যবহার করে ঘূর্ণমান ইনপুট পরিচালনা করার জন্য নির্দেশ করে। Wear OS এর জন্য কম্পোজ ব্যবহার করে ঘূর্ণমান ইনপুট পরিচালনার বিষয়ে আরও তথ্যের জন্য, রচনায় রোটারি ইনপুট দেখুন।
অনেক স্ক্রোলযোগ্য কন্টেইনার, যেমন ScrollView , ListView , HorizontalScrollView , এবং WearableRecyclerView , কোন Wear OS-নির্দিষ্ট কোডের প্রয়োজন ছাড়াই ফোকাস থাকলে রোটারি ইনপুট সমর্থন করে। ফোকাস থাকা একটি গুরুত্বপূর্ণ পূর্বশর্ত, কারণ Android 9 (API লেভেল 28) এবং উচ্চতর, ভিউগুলি স্পষ্টভাবে ফোকাস পায় না।
সেরা অভ্যাস ফোকাস
ঘূর্ণমান ইনপুট ইভেন্টগুলিতে প্রতিক্রিয়া জানাতে, একটি স্ক্রোলযোগ্য পাত্রে অবশ্যই ফোকাস থাকতে হবে। রোটারি ইনপুট ইভেন্টগুলি ভিউ শ্রেণীবিন্যাসকে বুদবুদ করে না। যদি কোন ফোকাসড ভিউ না থাকে, অথবা যদি ফোকাস করা ভিউ View.onGenericMotionEvent() থেকে false রিটার্ন করে, তাহলে ইভেন্টটি Activity.onGenericMotionEvent() এ পাঠানো হবে।
রোটারি ইনপুট ইভেন্টগুলিতে প্রতিক্রিয়া জানানোর জন্য নিম্নলিখিতগুলি সেরা অনুশীলনগুলি রয়েছে:
মনে রাখবেন যে, ডিফল্টরূপে, কোনো অ্যাক্টিভিটি চালু করা বা এমনকি কোনো ভিউতে ট্যাপ করলেও এটি ফোকাস করা যায় না, এমনকি এটি ফোকাসযোগ্য হলেও। আপনার ভিউ ফোকাস দিতে, ভিউটিকে অবশ্যই <requestFocus /> ট্যাগ ব্যবহার করতে হবে অথবা ম্যানুয়ালি View.requestFocus() কল করতে হবে।
android:focusable="true" এবং android:focusableInTouchMode="true" উভয় ব্যবহার করে কাস্টম স্ক্রোলযোগ্য দৃশ্যগুলিকে ফোকাসযোগ্য হিসাবে চিহ্নিত করুন৷
Activity.onCreate() এর পরে যদি আপনার স্ক্রোলযোগ্য ভিউ সংযুক্ত থাকে —উদাহরণস্বরূপ, আপনার UI তৈরি করার আগে একটি নেটওয়ার্ক অনুরোধ শেষ হওয়ার জন্য অপেক্ষা করুন, এটি সংযুক্ত করার পরে requestFocus() কল করুন।
যদি আপনার স্ক্রোলযোগ্য দৃশ্যটি প্রাথমিকভাবে INVISIBLE বা GONE , আপনি যখন এটিকে VISIBLE এ সেট করেন তখন requestFocus() এ কল করুন।
যদি আপনার কার্যকলাপে একাধিক স্ক্রোলযোগ্য দৃশ্য থাকে, <requestFocus /> ট্যাগ ব্যবহার করে ফোকাস করার জন্য একটি বেছে নিন। ঘূর্ণায়মান সাইড বোতামের সাথে নেস্টেড স্ক্রোলিং সমর্থিত নয়।
যদি আপনার UI-তে অন্য কিছু থাকে যা ব্যবহারকারীর সাথে ইন্টারঅ্যাক্ট করার সময় ফোকাস নেয়—উদাহরণস্বরূপ, একটি InputText , ব্যবহারকারীকে স্ক্রোলযোগ্য ভিউতে ফোকাস পুনরুদ্ধার করার একটি উপায় দিন যদি এটি স্ক্রোলযোগ্য ভিউতে ট্যাপগুলি শুনে এবং requestFocus() কল করে ফোকাস হারায় requestFocus() উত্তরে।
কাস্টম ঘূর্ণন আচরণ
যদি আপনার স্ক্রোলযোগ্য দৃশ্যটি স্থানীয়ভাবে ঘূর্ণমান ইনপুট স্ক্রলিং সমর্থন না করে, অথবা আপনি যদি স্ক্রলিং ছাড়া অন্য কিছুর জন্য আপনার ঘূর্ণমান ইনপুট ব্যবহার করতে চান - যেমন জুম ইন এবং আউট বা ডায়ালগুলি চালু করতে - আপনি নিজেই স্ক্রোল ইভেন্টগুলি পরিচালনা করতে পারেন৷ আপনার ভিউ ফোকাস লাভ করে তা নিশ্চিত করতে মনে রাখবেন, অন্যথায় ইভেন্টগুলি আসবে না।
myView.setOnGenericMotionListener{v,ev->
if(ev.action==MotionEvent.ACTION_SCROLL&&
ev.isFromSource(InputDeviceCompat.SOURCE_ROTARY_ENCODER)){// Don't forget the negation herevaldelta=-ev.getAxisValue(MotionEventCompat.AXIS_SCROLL)*ViewConfigurationCompat.getScaledVerticalScrollFactor(ViewConfiguration.get(context),context)// Swap these axes to scroll horizontally insteadv.scrollBy(0,delta.roundToInt())true}else{false}}
জাভা
myView.setOnGenericMotionListener(newView.OnGenericMotionListener(){@OverridepublicbooleanonGenericMotion(Viewv,MotionEventev){if(ev.getAction()==MotionEvent.ACTION_SCROLL&&
ev.isFromSource(InputDeviceCompat.SOURCE_ROTARY_ENCODER)){// Don't forget the negation herefloatdelta=-ev.getAxisValue(MotionEventCompat.AXIS_SCROLL)*ViewConfigurationCompat.getScaledVerticalScrollFactor(ViewConfiguration.get(context),context);// Swap these axes to scroll horizontally insteadv.scrollBy(0,Math.round(delta));returntrue;}returnfalse;}});
একটি এমুলেটর ব্যবহার করে পরীক্ষা করুন
একটি Wear ডিভাইসে রোটারি ইনপুট স্ক্রলিং অনুকরণ করতে Android এমুলেটর ব্যবহার করুন। আপনার প্রোজেক্ট চালানোর জন্য এমুলেটরে আপনার Wear অ্যাপ চালু করুন বা এটি ইনস্টল করতে এমুলেটরে একটি APK ফাইল টেনে আনুন।
এমুলেটরে রোটারি ইনপুট পরীক্ষা করতে:
SDK ম্যানেজার থেকে, Android এমুলেটর 26.0.3 বা উচ্চতর পেতে SDK টুল ট্যাব ব্যবহার করুন৷
অ্যান্ড্রয়েড স্টুডিওতে, টুলস > অ্যান্ড্রয়েড > AVD ম্যানেজার নির্বাচন করুন। API 25 বা উচ্চতর দিয়ে একটি নতুন Wear ডিভাইস তৈরি করুন ।
এমুলেটর টুলবারের নীচে তিন-বিন্দু ওভারফ্লো মেনুতে ক্লিক করুন। রোটারি ইনপুট ইন্টারফেস খুলতে নতুন উইন্ডোতে রোটারি ইনপুট ট্যাবে ক্লিক করুন এবং রোটারি ইনপুট স্ক্রোলিং চেষ্টা করুন।
নিম্নলিখিত ভিডিওটি এমুলেটরে রোটারি ইনপুট দেখায়:
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি Content License-এ বর্ণিত লাইসেন্সের অধীনস্থ। Java এবং OpenJDK হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],[],null,["# Rotary input\n\nSome Wear OS devices contain a physical *rotating side button* . When the user turns the\nbutton, it scrolls your app's current view up or down. This type of input is called\n*rotary input*.\n\n**Note:** This guide refers primarily to handling rotary input using\nView-based UIs. For more information on handling rotary input using Compose for Wear OS, see\n[Rotary input on Compose](/training/wearables/compose/rotary-input).\n\nMany scrollable containers, like\n[ScrollView](/reference/android/widget/ScrollView),\n[ListView](/reference/android/widget/ListView),\n[HorizontalScrollView](/reference/android/widget/HorizontalScrollView),\nand [WearableRecyclerView](/reference/androidx/wear/widget/WearableRecyclerView),\nsupport rotary input if they have focus without requiring any Wear\nOS-specific code.\nHaving focus is an important prerequisite, because on Android 9 (API level\n28) and higher, views don't implicitly receive focus.\n\nFocus best practices\n--------------------\n\n\nTo respond to rotary input events, a scrollable container must have focus.\nRotary input events don't bubble up the view\nhierarchy. If there is no focused view, or if the focused view returns `false` from\n[View.onGenericMotionEvent()](/reference/android/view/View#onGenericMotionEvent(android.view.MotionEvent)),\nthen the event is sent to\n[Activity.onGenericMotionEvent()](/reference/android/app/Activity#onGenericMotionEvent(android.view.MotionEvent)).\n\n\nThe following are best practices around responding to rotary input events:\n\n- Bear in mind that, by default, launching an activity or even tapping on a view does not give it focus, even if it is focusable. To give your view focus, the view must use the [<requestFocus /\u003e](/guide/topics/resources/layout-resource) tag or manually call [View.requestFocus()](/reference/android/view/View#requestFocus()).\n- Mark custom scrollable views as focusable using both `android:focusable=\"true\"` and `android:focusableInTouchMode=\"true\"`.\n- If your scrollable view is attached after [Activity.onCreate()](/reference/android/app/Activity#onCreate(android.os.Bundle))---for example, waiting for a network request to finish before building your UI, call `requestFocus()` after attaching it.\n- If your scrollable view is initially [INVISIBLE](/reference/android/view/View#INVISIBLE) or [GONE](/reference/android/view/View#GONE), call `requestFocus()` when you set it to [VISIBLE](/reference/android/view/View#VISIBLE).\n- If your activity contains multiple scrollable views, choose one to focus using the [<requestFocus /\u003e](/guide/topics/resources/layout-resource) tag. Nested scrolling is not supported with the rotating side button.\n- If your UI contains some other view that takes focus when the user interacts with it---for example, an `InputText`, give the user a way to restore focus to the scrollable view if it loses focus by listening for taps on the scrollable view and calling `requestFocus()` in response.\n\nCustom rotating behavior\n------------------------\n\nIf your scrollable view doesn't natively support rotary input scrolling, or if you want to\nuse your rotary input for something other than scrolling---such as to\nzoom in and out or to turn dials---you can handle the scroll events\nyourself. Remember to make sure your view gains focus, otherwise\nthe events will not come through.\n\nThe following code snippet shows how to use [MotionEvent](/reference/android/view/MotionEvent),\n[InputDeviceCompat](/reference/kotlin/androidx/core/view/InputDeviceCompat),\nand [ViewConfigurationCompat](/reference/androidx/core/view/ViewConfigurationCompat)\nto add custom scrolling to your view: \n\n### Kotlin\n\n```kotlin\nmyView.setOnGenericMotionListener { v, ev -\u003e\n if (ev.action == MotionEvent.ACTION_SCROLL &&\n ev.isFromSource(InputDeviceCompat.SOURCE_ROTARY_ENCODER)\n ) {\n // Don't forget the negation here\n val delta = -ev.getAxisValue(MotionEventCompat.AXIS_SCROLL) *\n ViewConfigurationCompat.getScaledVerticalScrollFactor(\n ViewConfiguration.get(context), context\n )\n // Swap these axes to scroll horizontally instead\n v.scrollBy(0, delta.roundToInt())\n true\n } else {\n false\n }\n}\n```\n\n### Java\n\n```java\nmyView.setOnGenericMotionListener(new View.OnGenericMotionListener() {\n @Override\n public boolean onGenericMotion(View v, MotionEvent ev) {\n if (ev.getAction() == MotionEvent.ACTION_SCROLL &&\n ev.isFromSource(InputDeviceCompat.SOURCE_ROTARY_ENCODER)\n ) {\n // Don't forget the negation here\n float delta = -ev.getAxisValue(MotionEventCompat.AXIS_SCROLL) *\n ViewConfigurationCompat.getScaledVerticalScrollFactor(\n ViewConfiguration.get(context), context\n );\n\n // Swap these axes to scroll horizontally instead\n v.scrollBy(0, Math.round(delta));\n\n return true;\n }\n return false;\n }\n});\n```\n\nTest using an emulator\n----------------------\n\nUse the [Android Emulator](/studio/run/emulator#about) to simulate rotary input\nscrolling on a Wear device. Launch your Wear app on the emulator to run\nyour project or drag an\nAPK file onto the emulator to install it.\n\nTo test the rotary input on the emulator:\n\n1. From the [SDK manager](/tools/help/sdk-manager), use the **SDK tools** tab to get Android Emulator 26.0.3 or higher.\n2. In Android Studio, select **Tools \\\u003e\n Android \\\u003e AVD Manager** . [Create a new Wear device](/studio/run/managing-avds#createavd) with API 25 or higher.\n3. [Run the emulator from Android Studio](/studio/run/emulator#runningapp).\n4. Click the three-dot overflow menu at the bottom of the emulator toolbar. Click the **Rotary input** tab in the new window to open the rotary input interface and try rotary input scrolling.\n\nThe following video shows rotary input in the emulator:"]]