ylliX - Online Advertising Network

RangeBarChart | Android-Arsenal.com

⚡ Range bar chart library for Android using MPAndroidChart⚡ There were no charts in MPAndroidChart to show ranges. We were forced to show the range charts we wanted using a similarly capable candlestick chart. This library can be used when you want to create charts that can represent ranges such as weather and heart rate. […]

Jambo | Android-Arsenal.com

Jambo is an open source remote logging library. For those who would like to see their logs remotely on their android device Jambo is the library for you. Jambo installs a separate debug app for intercepting all logs called with the Jambo class. Installation • Usage • Contributing • Credits • License Locate your build.gradle.kts […]

AmazingSpinner | Android-Arsenal.com

Android Spinner support hint Adding to project Gradle Add below code to your root build.gradle file allprojects { repositories { maven { url ‘https://jitpack.io’ } } } And add the following dependency code to your module‘s build.gradle file. dependencies { implementation ‘com.github.Mamoon-Alhawamdeh:AmazingSpinner:${latest-version}” } Usage <com.google.android.material.textfield.TextInputLayout style=”@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:layout_marginLeft=”16dp” android:layout_marginRight=”16dp”> <com.rosemaryapp.amazingspinner.AmazingSpinner style=”@style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:hint=”hint”/> […]