1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-29 14:35:45 +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" />
<None Include="Resources\AboutResources.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>
<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"
app:tabIndicatorColor="@color/HDRed"
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
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
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">
<item name="android:windowBackground">@drawable/splash</item>
</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>