Three columns mode (2)

This commit is contained in:
M66B
2020-01-02 13:55:37 +01:00
parent 22c454335d
commit 6237e46040
2 changed files with 10 additions and 5 deletions

View File

@@ -50,7 +50,6 @@ import androidx.appcompat.app.ActionBarDrawerToggle;
import androidx.appcompat.app.AlertDialog;
import androidx.constraintlayout.widget.Group;
import androidx.core.app.NotificationCompat;
import androidx.drawerlayout.widget.DrawerLayout;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentTransaction;
@@ -154,7 +153,6 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
content_pane = findViewById(R.id.content_pane);
drawerLayout = findViewById(R.id.drawer_layout);
drawerLayout.setup(getResources().getConfiguration());
drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, R.string.app_name, R.string.app_name) {
public void onDrawerClosed(View view) {
@@ -501,6 +499,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
drawerLayout.setup(getResources().getConfiguration());
drawerToggle.syncState();
}