This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 1, | |
| "uid": 11439577402410332000, | |
| "layout": [ | |
| [ | |
| [ | |
| "KC_J", | |
| "KC_L", | |
| "KC_U", | |
| "KC_Y", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cc.femto.kommon.util | |
| import android.content.SharedPreferences | |
| import com.f2prateek.rx.preferences.Preference | |
| import com.google.gson.Gson | |
| import java.lang.reflect.Type | |
| /** | |
| * A [Preference.Adapter] implementation that serializes types as JSON strings | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cc.femto.kommon.ui.widget | |
| import android.content.Context | |
| import android.util.AttributeSet | |
| import android.view.View | |
| import android.widget.RelativeLayout | |
| /** | |
| * ContentLoadingRelativeLayout implements a RelativeLayout that waits a minimum time to be | |
| * dismissed before showing. Once visible, the view will be visible for |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cc.femto.kommon.ui | |
| import android.support.v4.view.PagerAdapter | |
| import android.view.View | |
| import android.view.ViewGroup | |
| /** | |
| * A [PagerAdapter] that returns a view corresponding to one of the sections/tabs/pages. | |
| * This provides the data for the [ViewPager]. | |
| */ |