flipboxstudio / sosoito

Progress layout collection for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android Arsenal

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()

screenshot

About

Progress layout collection for Android


Languages

Language:Java 100.0%