File tree 1 file changed +4
-4
lines changed
app/src/main/java/com/donnfelker/android/bootstrap/ui
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -67,14 +67,14 @@ protected void onCreate(Bundle savedInstanceState) {
67
67
68
68
/** Called when a drawer has settled in a completely closed state. */
69
69
public void onDrawerClosed (View view ) {
70
- getActionBar ().setTitle (mTitle );
71
- invalidateOptionsMenu (); // creates call to onPrepareOptionsMenu()
70
+ getSupportActionBar ().setTitle (mTitle );
71
+ supportInvalidateOptionsMenu (); // creates call to onPrepareOptionsMenu()
72
72
}
73
73
74
74
/** Called when a drawer has settled in a completely open state. */
75
75
public void onDrawerOpened (View drawerView ) {
76
- getActionBar ().setTitle (mDrawerTitle );
77
- invalidateOptionsMenu (); // creates call to onPrepareOptionsMenu()
76
+ getSupportActionBar ().setTitle (mDrawerTitle );
77
+ supportInvalidateOptionsMenu (); // creates call to onPrepareOptionsMenu()
78
78
}
79
79
};
80
80
You can’t perform that action at this time.
0 commit comments