Sosoito

Additional

Language
Java
Version
v1.0.3 (Jun 30, 2017)
Created
Feb 21, 2017
Updated
Jun 30, 2017 (Retired)
Owner
Flipbox Studio (flipboxstudio)
Contributors
Bukhori Muhammad Aqid (aqidd)
Suryo Satrio (suhafer)
2
Activity
Badge
Generate
Download
Source code

Sosoito

Sosoito is layout library for Android that can be used to simplify basic needs for loading/progression state.

Demo / Sample Project

Installation

Sosoito can installed by adding the following dependency to your build.gradle file:

repositories {
  jcenter()
  maven { url "https://jitpack.io" }
}
dependencies {
  compile 'com.github.flipboxstudio:sosoito:latest-release'
}

Usage

Basic

You can start using sosoito by add your preferable layout in your layout.xml:

<id.co.flipbox.sosoito.LoadingLayout
        android:id="@+id/loadingLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

</id.co.flipbox.sosoito.LoadingLayout>

Then, access it from your activity/fragment to use it's feature:

...
LoadingLayout loadingLayout = (LoadingLayout) findViewById(R.id.loadingLayout);
loadingLayout.showLoading(true);
...
Available Methods

Empty Layout

  • showEmptyView(boolean)
  • showEmptyView(boolean, message)
  • showEmptyView(boolean, iconResourceId)
  • showEmptyView(boolean, iconResourceId, message)

Custom Loading Layout

  • showCustomLoading(boolean)
  • showCustomLoading(boolean, message)
  • showCustomLoading(boolean, iconResourceId)
  • showCustomLoading(boolean, iconResourceId, message)

Loading (in) layout

  • showLoading(boolean)
  • showLoading(boolean, message)

Progress Dialog

  • showProgressDialog()
  • showProgressDialog(message)
  • setProgressDialogMessage(message)
  • hideProgressDialog()