Hello.
There is a small problem:
Empty space under ActionBar - on Android 4 it is not displayed, only on 5+.
Fragment from the manifesto:
<activity android:name="com.evgeny.manko.egeshka.testsys.TestActivity" android:label="@string/title_activity_new_test_system" android:theme="@style/AppTheme" android:windowSoftInputMode="adjustResize" /> Styles.xml:
<resources> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> <style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> </style> <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"></style> <style name="ToolBarWithNavigationBack"></style> <style name="AppTheme.Russian"> <item name="colorPrimary">@color/lightBlue</item> <item name="colorPrimaryDark">@color/lightBlueDark</item> <item name="colorAccent">@color/colorAccent</item> </style> There is nothing about the actionbar
