SlidingDrawer overlap the listview
- by vycon
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
cursor = fetchAllDiary();
this.setListAdapter(new DiaryListAdapter(this, cursor, true));
View drawer_view = mInflater.inflate(R.layout.drawer, null);
LayoutParams params = new LayoutParams(200,150);
getWindow().addContentView(drawer_view,…