পুরানো এপিআইগুলির সাথে একটি বাস্তবায়ন তৈরি করুন
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
এই পাঠটি আলোচনা করে যে কীভাবে একটি বাস্তবায়ন তৈরি করতে হয় যা নতুন API গুলিকে মিরর করে তবে পুরানো ডিভাইসগুলিকে সমর্থন করে৷
একটি বিকল্প সমাধান সিদ্ধান্ত নিন
একটি পশ্চাদগামী-সামঞ্জস্যপূর্ণ উপায়ে নতুন UI বৈশিষ্ট্যগুলি ব্যবহার করার ক্ষেত্রে সবচেয়ে চ্যালেঞ্জিং কাজ হল পুরানো প্ল্যাটফর্ম সংস্করণগুলির জন্য একটি পুরানো (ফলব্যাক) সমাধানের সিদ্ধান্ত নেওয়া এবং বাস্তবায়ন করা৷ অনেক ক্ষেত্রে, পুরানো UI ফ্রেমওয়ার্ক বৈশিষ্ট্যগুলি ব্যবহার করে এই নতুন UI উপাদানগুলির উদ্দেশ্য পূরণ করা সম্ভব। যেমন:
অ্যাকশন বারগুলি কাস্টম শিরোনাম বার হিসাবে বা আপনার কার্যকলাপ বিন্যাসে ভিউ হিসাবে চিত্র বোতাম ধারণকারী একটি অনুভূমিক LinearLayout
ব্যবহার করে প্রয়োগ করা যেতে পারে। ওভারফ্লো ক্রিয়াগুলি ডিভাইস মেনু বোতামের অধীনে উপস্থাপন করা যেতে পারে।
অ্যাকশন বার ট্যাবগুলি বোতাম ধারণকারী একটি অনুভূমিক LinearLayout
ব্যবহার করে বা TabWidget
UI উপাদান ব্যবহার করে প্রয়োগ করা যেতে পারে।
NumberPicker
এবং Switch
উইজেট যথাক্রমে Spinner
এবং ToggleButton
উইজেট ব্যবহার করে প্রয়োগ করা যেতে পারে।
ListPopupWindow
এবং PopupMenu
উইজেটগুলি PopupWindow
উইজেট ব্যবহার করে প্রয়োগ করা যেতে পারে।
পুরানো ডিভাইসগুলিতে নতুন UI উপাদানগুলি ব্যাকপোর্ট করার জন্য সাধারণত এক-আকার-ফিট-সমস্ত সমাধান নেই। ব্যবহারকারীর অভিজ্ঞতা সম্পর্কে সচেতন থাকুন: পুরানো ডিভাইসগুলিতে, ব্যবহারকারীরা নতুন ডিজাইনের প্যাটার্ন এবং UI উপাদানগুলির সাথে পরিচিত নাও হতে পারে৷ পরিচিত উপাদান ব্যবহার করে একই কার্যকারিতা কীভাবে সরবরাহ করা যেতে পারে সে সম্পর্কে কিছুটা চিন্তা করুন। অনেক ক্ষেত্রে এটি একটি উদ্বেগের বিষয় নয়—যদি নতুন UI উপাদানগুলি অ্যাপ্লিকেশন ইকোসিস্টেমে বিশিষ্ট হয় (যেমন অ্যাকশন বার), অথবা যেখানে ইন্টারঅ্যাকশন মডেলটি অত্যন্ত সহজ এবং স্বজ্ঞাত (যেমন একটি ViewPager
ব্যবহার করে ভিউ সোয়াইপ করা)।
পুরোনো API ব্যবহার করে ট্যাব প্রয়োগ করুন
অ্যাকশন বার ট্যাবগুলির একটি পুরানো বাস্তবায়ন তৈরি করতে, আপনি একটি TabWidget
এবং TabHost
ব্যবহার করতে পারেন (যদিও কেউ বিকল্পভাবে অনুভূমিকভাবে রাখা Button
উইজেটগুলি ব্যবহার করতে পারে)। TabHelperEclair
এবং CompatTabEclair
নামক ক্লাসগুলিতে এটি প্রয়োগ করুন, যেহেতু এই বাস্তবায়নটি Android 2.0 (Eclair) এর পরে চালু করা API ব্যবহার করে।

চিত্র 1. ট্যাবগুলির Eclair বাস্তবায়নের জন্য ক্লাস ডায়াগ্রাম।
CompatTabEclair
বাস্তবায়ন ট্যাব বৈশিষ্ট্য যেমন ট্যাব টেক্সট এবং ইনস্ট্যান্স ভেরিয়েবলে আইকন সংরক্ষণ করে, যেহেতু এই স্টোরেজ পরিচালনা করার জন্য একটি ActionBar.Tab
অবজেক্ট উপলব্ধ নেই:
কোটলিন
class CompatTabEclair internal constructor(val activity: FragmentActivity, tag: String) :
CompatTab(tag) {
// Store these properties in the instance,
// as there is no ActionBar.Tab object.
private var text: CharSequence? = null
...
override fun setText(resId: Int): CompatTab {
// Our older implementation simply stores this
// information in the object instance.
text = activity.resources.getText(resId)
return this
}
...
// Do the same for other properties (icon, callback, etc.)
}
জাভা
public class CompatTabEclair extends CompatTab {
// Store these properties in the instance,
// as there is no ActionBar.Tab object.
private CharSequence text;
...
public CompatTab setText(int resId) {
// Our older implementation simply stores this
// information in the object instance.
text = activity.getResources().getText(resId);
return this;
}
...
// Do the same for other properties (icon, callback, etc.)
}
TabHelperEclair
বাস্তবায়ন TabHost.TabSpec
অবজেক্ট এবং ট্যাব সূচক তৈরি করার জন্য TabHost
উইজেটে পদ্ধতি ব্যবহার করে:
কোটলিন
class TabHelperEclair internal constructor(activity: FragmentActivity) : TabHelper(activity) {
private var tabHost: TabHost? = null
...
override fun setUp() {
// Our activity layout for pre-Honeycomb devices
// must contain a TabHost.
tabHost = tabHost ?: mActivity.findViewById<TabHost>(android.R.id.tabhost).apply {
setup()
}
}
override fun addTab(tab: CompatTab) {
...
tabHost?.newTabSpec(tab.tag)?.run {
setIndicator(tab.getText()) // And optional icon
...
tabHost?.addTab(this)
}
}
// The other important method, newTab() is part of
// the base implementation.
}
জাভা
public class TabHelperEclair extends TabHelper {
private TabHost tabHost;
...
protected void setUp() {
if (tabHost == null) {
// Our activity layout for pre-Honeycomb devices
// must contain a TabHost.
tabHost = (TabHost) mActivity.findViewById(
android.R.id.tabhost);
tabHost.setup();
}
}
public void addTab(CompatTab tab) {
...
TabSpec spec = tabHost
.newTabSpec(tag)
.setIndicator(tab.getText()); // And optional icon
...
tabHost.addTab(spec);
}
// The other important method, newTab() is part of
// the base implementation.
}
আপনার কাছে এখন CompatTab
এবং TabHelper
এর দুটি বাস্তবায়ন রয়েছে: একটি যেটি Android 3.0 বা তার পরের সংস্করণে চালিত ডিভাইসগুলিতে কাজ করে এবং নতুন API ব্যবহার করে এবং অন্যটি যেটি Android 2.0 বা তার পরে চলমান ডিভাইসগুলিতে কাজ করে এবং পুরানো API ব্যবহার করে৷ পরবর্তী পাঠ আপনার অ্যাপ্লিকেশনে এই বাস্তবায়ন ব্যবহার করে আলোচনা করে।
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি 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,["# Create an implementation with older APIs\n\nThis lesson discusses how to create an implementation that mirrors newer APIs yet supports older devices.\n\nDecide on a substitute solution\n-------------------------------\n\nThe most challenging task in using newer UI features in a backward-compatible way is deciding on and implementing an older (fallback) solution for older platform versions. In many cases, it's possible to fulfill the purpose of these newer UI components using older UI framework features. For example:\n\n- Action bars can be implemented using a horizontal [LinearLayout](/reference/android/widget/LinearLayout) containing image buttons, either as custom title bars or as views in your activity layout. Overflow actions can be presented under the device *Menu* button.\n\n- Action bar tabs can be implemented using a horizontal [LinearLayout](/reference/android/widget/LinearLayout) containing buttons, or using the [TabWidget](/reference/android/widget/TabWidget) UI element.\n\n- [NumberPicker](/reference/android/widget/NumberPicker) and [Switch](/reference/android/widget/Switch) widgets can be implemented using [Spinner](/reference/android/widget/Spinner) and [ToggleButton](/reference/android/widget/ToggleButton) widgets, respectively.\n\n- [ListPopupWindow](/reference/android/widget/ListPopupWindow) and [PopupMenu](/reference/android/widget/PopupMenu) widgets can be implemented using [PopupWindow](/reference/android/widget/PopupWindow) widgets.\n\nThere generally isn't a one-size-fits-all solution for backporting newer UI components to older devices. Be mindful of the user experience: on older devices, users may not be familiar with newer design patterns and UI components. Give some thought as to how the same functionality can be delivered using familiar elements. In many cases this is less of a concern---if newer UI components are prominent in the application ecosystem (such as the action bar), or where the interaction model is extremely simple and intuitive (such as swipe views using a [ViewPager](/reference/androidx/viewpager/widget/ViewPager)).\n\nImplement tabs using older APIs\n-------------------------------\n\nTo create an older implementation of action bar tabs, you can use a [TabWidget](/reference/android/widget/TabWidget) and [TabHost](/reference/android/widget/TabHost) (although one can alternatively use horizontally laid-out [Button](/reference/android/widget/Button) widgets). Implement this in classes called `TabHelperEclair` and `CompatTabEclair`, since this implementation uses APIs introduced no later than Android 2.0 (Eclair).\n\n**Figure 1.** Class diagram for the Eclair implementation of tabs.\n\nThe `CompatTabEclair` implementation stores tab properties such as the tab text and icon in instance variables, since there isn't an [ActionBar.Tab](/reference/android/app/ActionBar.Tab) object available to handle this storage: \n\n### Kotlin\n\n```kotlin\nclass CompatTabEclair internal constructor(val activity: FragmentActivity, tag: String) :\n CompatTab(tag) {\n\n // Store these properties in the instance,\n // as there is no ActionBar.Tab object.\n private var text: CharSequence? = null\n ...\n\n override fun setText(resId: Int): CompatTab {\n // Our older implementation simply stores this\n // information in the object instance.\n text = activity.resources.getText(resId)\n return this\n }\n\n ...\n // Do the same for other properties (icon, callback, etc.)\n}\n```\n\n### Java\n\n```java\npublic class CompatTabEclair extends CompatTab {\n // Store these properties in the instance,\n // as there is no ActionBar.Tab object.\n private CharSequence text;\n ...\n\n public CompatTab setText(int resId) {\n // Our older implementation simply stores this\n // information in the object instance.\n text = activity.getResources().getText(resId);\n return this;\n }\n\n ...\n // Do the same for other properties (icon, callback, etc.)\n}\n```\n\nThe `TabHelperEclair` implementation makes use of methods on the\n[TabHost](/reference/android/widget/TabHost) widget for creating [TabHost.TabSpec](/reference/android/widget/TabHost.TabSpec)\nobjects and tab indicators: \n\n### Kotlin\n\n```kotlin\nclass TabHelperEclair internal constructor(activity: FragmentActivity) : TabHelper(activity) {\n\n private var tabHost: TabHost? = null\n ...\n\n override fun setUp() {\n // Our activity layout for pre-Honeycomb devices\n // must contain a TabHost.\n tabHost = tabHost ?: mActivity.findViewById\u003cTabHost\u003e(android.R.id.tabhost).apply {\n setup()\n }\n }\n\n override fun addTab(tab: CompatTab) {\n ...\n tabHost?.newTabSpec(tab.tag)?.run {\n setIndicator(tab.getText()) // And optional icon\n ...\n tabHost?.addTab(this)\n }\n }\n // The other important method, newTab() is part of\n // the base implementation.\n}\n```\n\n### Java\n\n```java\npublic class TabHelperEclair extends TabHelper {\n private TabHost tabHost;\n ...\n\n protected void setUp() {\n if (tabHost == null) {\n // Our activity layout for pre-Honeycomb devices\n // must contain a TabHost.\n tabHost = (TabHost) mActivity.findViewById(\n android.R.id.tabhost);\n tabHost.setup();\n }\n }\n\n public void addTab(CompatTab tab) {\n ...\n TabSpec spec = tabHost\n .newTabSpec(tag)\n .setIndicator(tab.getText()); // And optional icon\n ...\n tabHost.addTab(spec);\n }\n\n // The other important method, newTab() is part of\n // the base implementation.\n}\n```\n\nYou now have two implementations of `CompatTab` and `TabHelper`: one that works on devices running Android 3.0 or later and uses new APIs, and another that works on devices running Android 2.0 or later and uses older APIs. The next lesson discusses using these implementations in your application."]]