Added debug font
This commit is contained in:
parent
f3988ae1d1
commit
1941086b4a
7 changed files with 76 additions and 7 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -38,8 +38,4 @@ obj/
|
|||
captures
|
||||
app/normal/release/
|
||||
/models/
|
||||
|
||||
app/font/
|
||||
app/src/debug/
|
||||
/app/nofont/
|
||||
/crowdin.properties
|
||||
/app/release/
|
||||
|
|
BIN
app/src/debug/res/font/bold.ttf
Normal file
BIN
app/src/debug/res/font/bold.ttf
Normal file
Binary file not shown.
BIN
app/src/debug/res/font/medium.ttf
Normal file
BIN
app/src/debug/res/font/medium.ttf
Normal file
Binary file not shown.
BIN
app/src/debug/res/font/regular.ttf
Normal file
BIN
app/src/debug/res/font/regular.ttf
Normal file
Binary file not shown.
13
app/src/debug/res/font/sans.xml
Normal file
13
app/src/debug/res/font/sans.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<font-family xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<font
|
||||
android:font="@font/regular"
|
||||
android:fontWeight="400" />
|
||||
<font
|
||||
android:font="@font/medium"
|
||||
android:fontWeight="600" />
|
||||
<font
|
||||
android:font="@font/bold"
|
||||
android:fontWeight="700" />
|
||||
</font-family>
|
57
app/src/debug/res/values/styles.xml
Normal file
57
app/src/debug/res/values/styles.xml
Normal file
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<style name="TextViewNormal" parent="">
|
||||
<item name="android:textSize">14sp</item>
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewHeadline4" parent="TextAppearance.MaterialComponents.Headline4">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewHeadline5" parent="TextAppearance.MaterialComponents.Headline5">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewCaption" parent="TextAppearance.MaterialComponents.Caption">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewHeadline6" parent="TextAppearance.MaterialComponents.Headline6">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewHeadline3" parent="TextAppearance.MaterialComponents.Headline3">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewHeadline2" parent="TextAppearance.MaterialComponents.Headline2">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewSubtitle1" parent="TextAppearance.MaterialComponents.Subtitle1">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewSubtitle2" parent="TextAppearance.MaterialComponents.Subtitle2">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewBody1" parent="TextAppearance.MaterialComponents.Body1">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewButton" parent="TextAppearance.MaterialComponents.Button">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewBody2" parent="TextAppearance.MaterialComponents.Body2">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
<style name="TextViewOverline" parent="TextAppearance.MaterialComponents.Overline">
|
||||
<item name="fontFamily">@font/sans</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
|
@ -47,11 +47,14 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom|end"
|
||||
android:layout_marginBottom="72dp"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:id="@+id/addPlaylist"
|
||||
android:src="@drawable/ic_playlist_add"
|
||||
app:useCompatPadding="true" />
|
||||
app:useCompatPadding="true"
|
||||
app:layout_anchor="@id/fragment_container"
|
||||
app:layout_anchorGravity="end|bottom"
|
||||
android:contentDescription="@string/add_playlist_title" />
|
||||
|
||||
<androidx.fragment.app.FragmentContainerView
|
||||
android:id="@+id/fragment_container"
|
||||
|
|
Loading…
Reference in a new issue