This commit is contained in:
M66B 2019-08-18 09:21:54 +02:00
parent 8c63b7fdc4
commit 4e557667be
2 changed files with 0 additions and 5 deletions

View File

@ -157,7 +157,6 @@
android:name=".ActivityEml"
android:exported="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:launchMode="singleTop">
<intent-filter>
@ -192,7 +191,6 @@
android:name=".ActivityDSN"
android:exported="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:launchMode="singleTop">
<intent-filter>
@ -212,7 +210,6 @@
<activity
android:name=".ActivityBilling"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:launchMode="singleTop" />
<service

View File

@ -140,12 +140,10 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, R.string.app_name, R.string.app_name) {
public void onDrawerClosed(View view) {
super.onDrawerClosed(view);
getSupportActionBar().setTitle(getString(R.string.app_name));
}
public void onDrawerOpened(View drawerView) {
super.onDrawerOpened(drawerView);
getSupportActionBar().setTitle(getString(R.string.app_name));
}
};
drawerLayout.addDrawerListener(drawerToggle);