Skip to content

Commit

Permalink
Twelve: HorizontalListItem: Hide labels by default
Browse files Browse the repository at this point in the history
Change-Id: I909f53017ac8bb83fa98e90d04240702c364b485
  • Loading branch information
SebaUbuntu committed Nov 19, 2024
1 parent 71596b7 commit ec6c7f8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/src/main/res/layout/horizontal_list_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
android:maxLines="1"
android:textAppearance="?attr/textAppearanceLabelMedium"
android:textColor="?attr/colorOnSurface"
tools:text="Headline" />
android:visibility="gone"
tools:text="Headline"
tools:visibility="visible" />

<TextView
android:id="@+id/supportingTextView"
Expand All @@ -45,7 +47,9 @@
android:maxLines="1"
android:textAppearance="?attr/textAppearanceLabelMedium"
android:textColor="?attr/colorOnSurfaceVariant"
tools:text="Supporting" />
android:visibility="gone"
tools:text="Supporting"
tools:visibility="visible" />

<TextView
android:id="@+id/tertiaryTextView"
Expand Down

0 comments on commit ec6c7f8

Please sign in to comment.