Giter Club home page Giter Club logo

tomeees / androtecture Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 18 KB

Stuff that spares you boilerplate code, for example in fragment you'll find base fragment classes you could use to extend and remove duplications regarding layout inflation either with or without databinding support, also with a convenient callback to initialize your layout views in.

License: Apache License 2.0

Kotlin 100.00%
android data-binding kotlin fragment base class inflate callback

androtecture's Introduction

Fragment

BaseFragment takes care of layout inflation and provides onLayoutInit, a convenient callback to initialize your layout views in.

Usage of BaseFragment:

class <YourFragment> :
    BaseFragment(R.layout.<your_fragment_layout>)  // extend it, pass your layout
{

    // use this callback to initialize your views. no need for onCreateView, onViewCreated.
    override fun onLayoutInit() {         
        val text1 = requireView().findViewById<TextView>(R.id.text1).apply { 
            text = "foo"
        }
        // or with Android ktx (which allows us to use views from your layout easily and 
        // type-safely without findViewById) :
        // text1.text = "foo"
    } 
    
    ...
}

androtecture's People

Contributors

tomeees avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.