fixed dark theme
This commit is contained in:
parent
0bbe1fcad7
commit
64336d5d26
|
@ -170,7 +170,14 @@ public class MainActivity extends ActionBarActivity implements NavDrawerActivity
|
|||
if (ArrayUtils.contains(NAV_DRAWER_TAGS, lastFragment)) {
|
||||
loadFragment(lastFragment, null);
|
||||
} else {
|
||||
try {
|
||||
loadFeedFragmentById(Integer.valueOf(lastFragment), null);
|
||||
} catch (NumberFormatException e) {
|
||||
// it's not a number, this happens if we removed
|
||||
// a label from the NAV_DRAWER_TAGS
|
||||
// give them a nice default...
|
||||
loadFragment(QueueFragment.TAG, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
externalPlayerFragment = new ExternalPlayerFragment();
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
android:id="@+id/viewpager"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0px"
|
||||
android:layout_weight="1"
|
||||
android:background="@android:color/white" />
|
||||
android:layout_weight="1" />
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in New Issue