Back to project page mint.
The source code is released under:
GNU General Public License
If you think the Android project mint 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 com.slidingmenu.example; /*from w w w.ja v a 2 s . co m*/ import android.os.Bundle; public class SlidingContent extends BaseActivity { public SlidingContent() { super(R.string.title_bar_content); } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // set the Above View setContentView(R.layout.content_frame); getSupportFragmentManager() .beginTransaction() .replace(R.id.content_frame, new SampleListFragment()) .commit(); setSlidingActionBarEnabled(false); } }