हमारा सुझाव है कि 27 मार्च, 2025 से AOSP को बनाने और उसमें योगदान देने के लिए, aosp-main
के बजाय android-latest-release
का इस्तेमाल करें. ज़्यादा जानकारी के लिए, AOSP में हुए बदलाव लेख पढ़ें.
कार की यूज़र इंटरफ़ेस (यूआई) लाइब्रेरी के बिना ऐप्लिकेशन डेवलप करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
कार की यूज़र इंटरफ़ेस (यूआई) लाइब्रेरी (car-ui-library), एक ऐसी ऑटोमोटिव यूज़र इंटरफ़ेस (यूआई) लाइब्रेरी है जिसे ओईएम अपनी ज़रूरत के हिसाब से बना सकते हैं. Google का सुझाव है कि आप अपना ऐप्लिकेशन बनाने के लिए, car-ui-library का इस्तेमाल करें. अगर ऐसा नहीं किया जा सकता, तो आपके पास दो विकल्प हैं:
- Android 12 में,
car-rotary-lib
का इस्तेमाल किया जा सकता है. यह car-ui-library का सबसेट है.
- Android 11 पर, आपको यहां बताए गए तरीके से अपने
FocusParkingView
, FocusArea
, और DirectManipulationHelper
लागू करने होंगे.
FocusParkingView लागू करना
आपके पास अपना FocusParkingView
लागू करने या car-ui-library से क्लास को अपने प्रोजेक्ट में कॉपी करने का विकल्प है.
FocusParkingView
को लागू करने के लिए:
- सुलभता क्लास का नाम हार्ड कोड करें, ताकि
RotaryService
उसे पहचान सके:
@Override
public CharSequence getAccessibilityClassName() {
return "com.android.car.ui.FocusParkingView";
}
FocusArea लागू करना
FocusParkingView
की तरह, आपके पास अपनी FocusArea
को लागू करने या car-ui-library से क्लास को अपने प्रोजेक्ट में कॉपी करने का विकल्प होता है.
FocusArea
को लागू करने के लिए:
- सुलभता क्लास का नाम हार्ड कोड करें, ताकि रोटरी सेवा उसे पहचान सके:
@Override
public CharSequence getAccessibilityClassName() {
return "com.android.car.ui.FocusArea";
}
DirectManipulationHelper लागू करना
यह एक यूटिलिटी क्लास है. car-ui-library से क्लास को अपने प्रोजेक्ट में कॉपी किया जा सकता है.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (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-27 (UTC) को अपडेट किया गया."],[],[],null,["# Develop apps without the Car UI library\n\nThe\n[Car UI Library (car-ui-library)](/docs/automotive/hmi/car_ui)\nis a self-consistent automotive UI library that can be customized by OEMs. Google strongly\nrecommends you use the car-ui-library to create your app. If this isn't feasible, there are\ntwo alternatives:\n\n- From Android 12, you can use `car-rotary-lib`, a subset of car-ui-library.\n- On Android 11, you MUST implement your own `FocusParkingView`, `FocusArea`, and `DirectManipulationHelper` as described below.\n\nImplement FocusParkingView\n--------------------------\n\nYou either can implement your own `FocusParkingView` or copy the class from the\ncar-ui-library to your project.\n\nTo implement `FocusParkingView`:\n\n1. Hard code the accessibility class name so that the `RotaryService` can recognize it: \n\n ```\n @Override\n public CharSequence getAccessibilityClassName() {\n return \"com.android.car.ui.FocusParkingView\";\n }\n ```\n\nImplement FocusArea\n-------------------\n\nLike `FocusParkingView`, you can either implement your own `FocusArea`\nor copy the class from the car-ui-library to your project.\n\nTo implement `FocusArea`:\n\n1. Hard code the accessibility class name so that rotary service can recognize it: \n\n ```\n @Override\n public CharSequence getAccessibilityClassName() {\n return \"com.android.car.ui.FocusArea\";\n }\n ```\n\nImplement DirectManipulationHelper\n----------------------------------\n\nThis is a utility class. You can copy the class from the car-ui-library to your project."]]