https://github.com/rikkaapps/rikkax
Rikka's Android libraries.
https://github.com/rikkaapps/rikkax
android android-library
Last synced: about 1 year 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 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-05T04:58:45.000Z (over 1 year ago)
- Last Synced: 2025-05-16T08:06:14.345Z (about 1 year ago)
- Topics: android, android-library
- Language: Java
- Homepage:
- Size: 2.05 MB
- Stars: 426
- Watchers: 18
- Forks: 56
- Open Issues: 3
-
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.