Changing style of header

This commit is contained in:
Maxime Naturel 2022-02-03 15:57:31 +01:00
parent 134d7b2bf8
commit 70481e3ba3
1 changed files with 12 additions and 9 deletions

View File

@ -5,32 +5,35 @@
android:id="@+id/roomCategoryRootView" android:id="@+id/roomCategoryRootView"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="?android:colorBackground" android:background="?attr/vctr_header_background"
android:clickable="true" android:clickable="true"
android:focusable="true" android:focusable="true"
android:foreground="?attr/selectableItemBackground" android:foreground="?attr/selectableItemBackground"
android:gravity="center_vertical" android:gravity="center_vertical"
android:orientation="horizontal" android:orientation="horizontal"
android:paddingStart="8dp" android:paddingStart="16dp"
android:paddingTop="12dp" android:paddingVertical="8dp"
android:paddingEnd="@dimen/layout_horizontal_margin" android:paddingEnd="@dimen/layout_horizontal_margin">
android:paddingBottom="4dp">
<TextView <TextView
android:id="@+id/roomCategoryTitleView" android:id="@+id/roomCategoryTitleView"
style="@style/Widget.Vector.TextView.Body" style="@style/Widget.Vector.TextView.Subtitle.Medium"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginEnd="8dp" android:layout_marginEnd="8dp"
android:ellipsize="end" android:ellipsize="end"
android:gravity="center_vertical" android:gravity="center_vertical"
android:maxLines="1" android:maxLines="1"
android:textColor="?vctr_content_secondary" android:textColor="?vctr_content_primary"
android:textStyle="bold" android:textAllCaps="true"
android:textStyle="normal"
app:drawableTint="?vctr_content_secondary" app:drawableTint="?vctr_content_secondary"
android:drawablePadding="8dp"
tools:drawableEnd="@drawable/ic_expand_more" tools:drawableEnd="@drawable/ic_expand_more"
tools:text="@string/room_participants_header_direct_chats" /> tools:text="@string/room_participants_header_direct_chats" />
<!-- TODO add item counter text with the expand drawable + bind data into viewState and adapter -->
<im.vector.app.features.home.room.list.UnreadCounterBadgeView <im.vector.app.features.home.room.list.UnreadCounterBadgeView
android:id="@+id/roomCategoryUnreadCounterBadgeView" android:id="@+id/roomCategoryUnreadCounterBadgeView"
style="@style/Widget.Vector.TextView.Micro" style="@style/Widget.Vector.TextView.Micro"
@ -45,4 +48,4 @@
tools:background="@drawable/bg_unread_highlight" tools:background="@drawable/bg_unread_highlight"
tools:text="24" /> tools:text="24" />
</LinearLayout> </LinearLayout>