Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.