Back to project page BaseConverterPlus.
The source code is released under:
MIT License
If you think the Android project BaseConverterPlus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package codemonkey800.org.baseconverter.activities; /* w ww . j a v a2s . c om*/ import android.os.Bundle; import codemonkey800.org.baseconverter.R; public class MainActivity extends BaseActivity { @Override protected void onCreate( Bundle savedInstanceState ) { super.onCreate( savedInstanceState ); mDrawer.setSelection( 0 ); setContentFragment( 0 ); } @Override protected int getLayoutResource() { return R.layout.layout_main; } }