27 Mart 2025'ten itibaren AOSP'yi derlemek ve AOSP'ye katkıda bulunmak için aosp-main
yerine android-latest-release
kullanmanızı öneririz. Daha fazla bilgi için AOSP'de yapılan değişiklikler başlıklı makaleyi inceleyin.
Küçük hücre desteği
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Android 11 veya sonraki sürümlerle kullanıma sunulan cihazlar, hücre tanımlama API'lerindeki bir hücrenin CSG bilgileri hakkında bilgi edinen yöntemler aracılığıyla kapalı abone grupları (CSG'ler) için destek sağlayabilir. Bu, kapalı abone grupları aracılığıyla küçük hücreleri yöneten mobil ağ operatörleri (MNO'lar) için yararlıdır. CSG'ler hakkındaki bilgiler ClosedSubscriberGroupInfo
sınıfında temsil edilir.
Uygulama
Android 11 veya sonraki sürümleri çalıştıran cihazlarda CGG'leri desteklemek için radio/1.5/types.hal
içinde aşağıdaki işlevleri uygulayın.
ClosedSubscriberGroupInfo
: İsteğe bağlı olarak her CellIdentity
örneğine dahil edilir. Bu yapı, bir hücrenin ait olduğu kapalı abone grubu (varsa) hakkında ayrıntılar sağlamak için kullanılır. Bu, kişisel LTE cihazları gibi küçük hücreleri tanımlamak için yaygın olarak kullanılır. CBRS LTE gibi dağıtımlarda da kullanılabilir.
CellIdentityLte
: Ek PLMN kimliklerinin listesini destekler.
CellIdentityWcdma
: Ek PLMN kimliklerinin listesini destekler.
CellIdentityTdscdma
: Ek PLMN kimliklerinin listesini destekler.
RegStateResult
: Güncellenen bir CellIdentity
yapısı ve RPLMN'yi belirten bir alan içerir.
Doğrulama
Uygulamanızı test etmek için aşağıdaki CTS testini çalıştırın:
CellInfoTest
.
Bu sayfadaki içerik ve kod örnekleri, İçerik Lisansı sayfasında açıklanan lisanslara tabidir. Java ve OpenJDK, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-27 UTC.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-07-27 UTC."],[],[],null,["# Small cell support\n\nDevices launched with Android 11 or higher can provide\nsupport for closed subscriber groups (CSGs) through methods in the\n[cell identification APIs](https://developer.android.com/reference/android/telephony/CellIdentity)\nthat get information about a cell's CSG information. This is useful for mobile\nnetwork operators (MNOs) that manage small cells through closed subscriber\ngroups. Information about CSGs is represented in the\n[`ClosedSubscriberGroupInfo`](https://developer.android.com/reference/android/telephony/ClosedSubscriberGroupInfo)\nclass.\n\nImplementation\n--------------\n\nTo support CGGs on devices running Android 11 or\nhigher, implement the following functions in\n[`radio/1.5/types.hal`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/radio/1.5/types.hal).\n\n- `ClosedSubscriberGroupInfo`: Included optionally with every `CellIdentity` instance. This structure is used to provide details about the closed subscriber group to which a cell belongs, if any. This is commonly used to identity *small cells* such as personal LTE devices. It can also be used in deployments such as CBRS LTE.\n- `CellIdentityLte`: Supports a list of additional PLMN-IDs.\n- `CellIdentityWcdma`: Supports a list of additional PLMN-IDs.\n- `CellIdentityTdscdma`: Supports a list of additional PLMN-IDs.\n- `RegStateResult`: Includes an updated `CellIdentity` structure and a field to indicate the RPLMN.\n\nValidation\n----------\n\nTo test your implementation, run the following CTS test:\n[`CellInfoTest`](https://android.googlesource.com/platform/cts/+/3c3d33a/tests/tests/telephony/src/android/telephony/cts/CellInfoTest.java)."]]