Skip to content

LTMezzari/view-loader

Repository files navigation

View Loader

This is a library that loads all view components into a class. For it to work, the names of the ids and variables must be equal.

The View Loader can slow down the application, but in many cases, it will not be noticeable.

ViewLoader.get(R.id.class)
	.into(MainActivity.this)
	.from(BaseActivity.class)//Optional and reusable
	.find(view);//.findWithLog(view) to show the ViewLoader logs

Get the library here