-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from Teamwork/android/fix_typography_letterspa…
…cing Android: Fix letter spacing values for XML typography
- Loading branch information
Showing
4 changed files
with
84 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
android/styledictionary/app/src/main/res/layout/android_views_typography.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical"> | ||
|
||
<TextView | ||
style="@style/typography_title_small" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Title Small" | ||
/> | ||
|
||
<TextView | ||
style="@style/typography_title_medium" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Title Medium" | ||
/> | ||
|
||
<TextView | ||
style="@style/typography_title_large" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Title Large" | ||
/> | ||
|
||
<TextView | ||
style="@style/typography_body_small" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Body Small" | ||
/> | ||
|
||
<TextView | ||
style="@style/typography_body_medium" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Body Medium" | ||
/> | ||
|
||
<TextView | ||
style="@style/typography_body_large" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Body Large" | ||
/> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters