use of com.cpjd.roblu.ui.UIHandler in project Roblu by wdavies973.
the class UICustomizer method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_uicustomizer);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
if (getSupportActionBar() != null)
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
setTitle("UI Customizer");
getSupportActionBar().setSubtitle("Note: App must be relaunched for some changes to take effect");
getFragmentManager().beginTransaction().replace(R.id.blankFragment, new SettingsFragment()).commit();
new UIHandler(this, toolbar).update();
}
Aggregations