Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rikkaapps/rikkax
Rikka's Android libraries.
https://github.com/rikkaapps/rikkax
android android-library
Last synced: 6 days ago
JSON representation
Rikka's Android libraries.
- Host: GitHub
- URL: https://github.com/rikkaapps/rikkax
- Owner: RikkaApps
- License: mit
- Created: 2017-10-11T12:42:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-05T04:58:45.000Z (4 months ago)
- Last Synced: 2025-01-24T22:01:39.542Z (13 days ago)
- Topics: android, android-library
- Language: Java
- Homepage:
- Size: 2.05 MB
- Stars: 413
- Watchers: 18
- Forks: 51
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RikkaX
Libraries used in Rikka apps.
Because these libraries were for internal use, some of them may not be suitable as public libraries.
The libraries suitable as public libraries are as follows.
-------------------
## [AppCompat](./appcompat)
Modified version of AndroidX AppCompat.
## [BuildCompat](./buildcompat)
Helper class that helps you to check Android version, but also naming in a different way (`isAtLeast13` ✓).
## [Compatibility](./compatibility)
Helper class that helps you to check device information. For example, if the device runs MIUI.
## Html
### [Html](./html/html)
Copy of `android.text.Html` class.
### [Html-ktx](./html/html-ktx)
A ktx library to simplify `Html.fromHtml`.
## [Insets](./insets)
Handle window insets without writing `OnApplyWindowInsetsListener` everywhere.
## [LittleEndianDataStream](./io/little-endian-data-stream)
Similar to DataStreams classes, but in little-endian.
## [LayoutInflater](./layoutinflater)
Implementation of `android.view.LayoutInflater.Factory2` which makes custom attributes for all views possible.
## [Lazy](./lazy)
Lazy initialization helper classes, similar to Kotlin, but for Java-only projects.
## Lifecycle
### [ResourceLiveData](./lifecycle/lifecycle-resource-livedata)
MutableLiveData class with status.
### [SharedViewModel](./lifecycle/lifecycle-shared-viewmodel)
ViewModel that shares across activities.
### [ViewModelLazy](./lifecycle/lifecycle-viewmodel-lazy)
An easier-to-use version of ViewModelLazy than Androidx.
## Material
### [MaterialPreference](./material/material-preference)
Material 3 styled preference.
## [ParcelableList](./parcelablelist)
Helper class to transfer a large list of Parcelable objects through Binder.
## [MultiProcessPreference](./preference/multiprocess)
ContentProvider-based SharedPreference with multi-process support.
## [SimpleMenuPreference](./preference/simplemenu-preference)
A version of `ListPreference` that use Simple Menus from Material Design 1.
## RecyclerView
### [RecyclerViewKtx](./recyclerview/recyclerview-ktx)RecyclerView helper.
## Widget
### [BorderView](./widget/borderview)
BorderRecyclerView BorderNestedScrollView that shows border when content scrolls.
### [MainSwitchBar](./widget/mainswitchbar)
MainSwitchBar & MainSwitchPreference ported from AOSP [SettingLib/MainSwitchPreference](https://cs.android.com/android/platform/superproject/+/master:frameworks/base/packages/SettingsLib/MainSwitchPreference/).
### [SwitchBar](./widget/switchbar)
SwitchBar in system settings.