Guest User

Untitled

a guest
Apr 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. class TextMultiStateView: LinearLayout
  2. {
  3. lateinit var text: TextView
  4. lateinit var progress: ProgressBar
  5. lateinit var image: ImageView
  6.  
  7. constructor(context: Context) : super(context){
  8. init(context)
  9. }
  10.  
  11. constructor(context: Context, attrs: AttributeSet): super(context, attrs){
  12. init(context)
  13. }
  14.  
  15. constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr) {
  16. init(context)
  17. }
  18. ...
  19. }
Add Comment
Please, Sign In to add comment