1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 06:56:10 +00:00

Police système

This commit is contained in:
Yan Maniez 2019-06-22 02:22:34 +02:00
parent a5e0f52265
commit 5e870cd180
11 changed files with 2807 additions and 2750 deletions

View file

@ -441,6 +441,12 @@
<AndroidAsset Include="Assets\Cinzel-Regular.otf" /> <AndroidAsset Include="Assets\Cinzel-Regular.otf" />
<None Include="Resources\AboutResources.txt" /> <None Include="Resources\AboutResources.txt" />
<None Include="Assets\AboutAssets.txt" /> <None Include="Assets\AboutAssets.txt" />
<AndroidResource Include="Resources\font\cinzel_black.otf" />
<AndroidResource Include="Resources\font\cinzel_bold.otf" />
<AndroidResource Include="Resources\font\cinzel_regular.otf" />
<AndroidResource Include="Resources\font\cinzeldecorative_black.otf" />
<AndroidResource Include="Resources\font\cinzeldecorative_bold.otf" />
<AndroidResource Include="Resources\font\cinzeldecorative_regular.otf" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<AndroidResource Include="Resources\drawable\icon.png" /> <AndroidResource Include="Resources\drawable\icon.png" />

File diff suppressed because it is too large Load diff

View file

@ -8,4 +8,5 @@
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:tabIndicatorColor="@color/HDRed" app:tabIndicatorColor="@color/HDRed"
app:tabGravity="fill" app:tabGravity="fill"
app:tabMode="scrollable" /> app:tabMode="scrollable"
app:tabTextAppearance="@style/TabBar.TitleText"/>

View file

@ -1,9 +1,12 @@
<android.support.v7.widget.Toolbar <android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar" android:id="@+id/toolbar"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="?attr/colorPrimary" android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:titleTextAppearance="@style/Toolbar.TitleText"
/>

View file

@ -42,4 +42,14 @@
<style name="MyTheme.Splash" parent="MainTheme"> <style name="MyTheme.Splash" parent="MainTheme">
<item name="android:windowBackground">@drawable/splash</item> <item name="android:windowBackground">@drawable/splash</item>
</style> </style>
<style name="Toolbar.TitleText" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
<!--set your custom font properties-->
<item name="android:fontFamily">@font/cinzel_bold</item>
</style>
<style name="TabBar.TitleText" parent="TextAppearance.Design.Tab">
<!--set your custom font properties-->
<item name="android:fontFamily">@font/cinzel_bold</item>
</style>
</resources> </resources>