Add styles for app list and empty text

Those styles will be used in the three layouts that will define the
look of the fragments.
This commit is contained in:
relan 2015-11-06 18:44:23 +03:00
parent 080527bf2e
commit 950854318b

View File

@ -61,6 +61,22 @@
<style name="RepoDetailsBody" />
<style name="AppList">
<item name="android:id">@android:id/list</item>
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">match_parent</item>
<item name="android:fastScrollEnabled">true</item>
</style>
<style name="AppListEmptyText">
<item name="android:id">@android:id/empty</item>
<item name="android:gravity">center</item>
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">match_parent</item>
<item name="android:padding">20dp</item>
<item name="android:textSize">20sp</item>
</style>
<style name="SwapTheme.Wizard" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorButtonNormal">@color/swap_bright_blue</item>
<item name="android:actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>