AutoBundler
Android AutoBundler library
Description
AutoBundler is a library for Android applications, which removes boilerplate code from your
activities and fragments. The library handles typical actions with saving instance state.
So implementing your own onSaveInstanceState
and onRestoreInstanceState
with hundreds of LOC is a history now.
Usage
All you need to do to make AutoBundler work, is to add annotations to specified fields. Then you can call
store/restore actions with one line for all your properties.
That's all.
public class MainActivity extends Activity {
@KeepState int mId;
@KeepState String mName;
@KeepState double mValue;
@KeepState(mode = AutoBundler.MODE_ONRESTORE) EditText mEditText;
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_layout);
AutoBundler.restore(this, savedInstanceState, AutoBundler.MODE_ONCREATE);
...
}
@Override protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
AutoBundler.restore(this, savedInstanceState, AutoBundler.MODE_ONRESTORE);
}
@Override protected void onSaveInstanceState(Bundle outState) {
AutoBundler.save(this, outState);
super.onSaveInstanceState(outState);
}
}
AutoBundler supports basic classes, but you can also define your own class, which can either
implement Parcelable
or IFieldHandler
interface. You can then specify the exact algorithm
used to save and restore object values.
@KeepState DataObject mParcel;
@KeepState CustomObject mCustom;
...
class DataObject implements Parcelable {...}
class CustomObject implements IFieldHandler {
...
@Override
public void storeValue(Field field, Object object, Bundle bundle) throws IllegalAccessException {
bundle.putString(field.getName(), data);
}
@Override
public void readValue(Field field, Object object, Bundle bundle) throws IllegalAccessException {
data = bundle.getString(field.getName());
}
}
License
Released under Apache v2 license
Contact
Team-SOFT s.r.o.