simply derive AbstractGBFragmentActivity from GBActivity instead of FragmentActivity

This fixes the Actionbar being invisible
here
Andreas Shimokawa 2016-04-14 17:16:43 +02:00
parent 46086f0408
commit a9b75a63b3
1 changed files with 1 additions and 11 deletions

View File

@ -1,13 +1,9 @@
package nodomain.freeyourgadget.gadgetbridge.activities; package nodomain.freeyourgadget.gadgetbridge.activities;
import android.os.Bundle; import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter; import android.support.v4.app.FragmentPagerAdapter;
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
import nodomain.freeyourgadget.gadgetbridge.R;
/** /**
* A base activity that supports paging through fragments by swiping. * A base activity that supports paging through fragments by swiping.
* Subclasses will have to add a ViewPager to their layout and add something * Subclasses will have to add a ViewPager to their layout and add something
@ -21,7 +17,7 @@ import nodomain.freeyourgadget.gadgetbridge.R;
* *
* @see AbstractGBFragment * @see AbstractGBFragment
*/ */
public abstract class AbstractGBFragmentActivity extends FragmentActivity { public abstract class AbstractGBFragmentActivity extends GBActivity {
/** /**
* The {@link android.support.v4.view.PagerAdapter} that will provide * The {@link android.support.v4.view.PagerAdapter} that will provide
* fragments for each of the sections. We use a * fragments for each of the sections. We use a
@ -34,12 +30,6 @@ public abstract class AbstractGBFragmentActivity extends FragmentActivity {
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
if (GBApplication.isDarkThemeEnabled()) {
setTheme(R.style.GadgetbridgeThemeDark);
} else {
setTheme(R.style.GadgetbridgeTheme);
}
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
// Create the adapter that will return a fragment for each of the three // Create the adapter that will return a fragment for each of the three