mirror of
https://github.com/element-hq/element-android
synced 2024-12-23 01:31:24 +03:00
ed6498fce1
A lot of items e.g. member items, room items, space items as well as dialog top bar are prefixed with the word avatar. Remove this and make some accessibility specific strings shorter. Signed-off-by: Peter Vágner <pvdeejay@gmail.com>
65 lines
2.8 KiB
XML
65 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<im.vector.app.core.platform.CheckableConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/itemGroupLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="65dp"
|
|
android:background="@drawable/bg_space_item"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:foreground="?attr/selectableItemBackground">
|
|
|
|
<ImageView
|
|
android:id="@+id/groupAvatarImageView"
|
|
android:layout_width="42dp"
|
|
android:layout_height="42dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginStart="@dimen/layout_horizontal_margin"
|
|
android:importantForAccessibility="no"
|
|
android:duplicateParentState="true"
|
|
app:layout_constraintBottom_toTopOf="@+id/groupBottomSeparator"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:src="@sample/room_round_avatars" />
|
|
|
|
<TextView
|
|
android:id="@+id/groupNameView"
|
|
style="@style/Widget.Vector.TextView.Subtitle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/layout_horizontal_margin"
|
|
android:layout_marginEnd="@dimen/layout_horizontal_margin"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?vctr_content_primary"
|
|
android:textStyle="bold"
|
|
app:layout_constraintBottom_toTopOf="@+id/groupBottomSeparator"
|
|
app:layout_constraintEnd_toStartOf="@+id/groupAvatarChevron"
|
|
app:layout_constraintStart_toEndOf="@+id/groupAvatarImageView"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="@tools:sample/lorem/random" />
|
|
|
|
<ImageView
|
|
android:id="@+id/groupAvatarChevron"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="21dp"
|
|
android:importantForAccessibility="no"
|
|
android:src="@drawable/ic_arrow_right"
|
|
app:layout_constraintBottom_toTopOf="@+id/groupBottomSeparator"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:tint="?vctr_content_primary"
|
|
tools:ignore="MissingPrefix" />
|
|
|
|
<View
|
|
android:id="@+id/groupBottomSeparator"
|
|
android:layout_width="0dp"
|
|
android:layout_height="1dp"
|
|
android:background="?vctr_list_separator"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent" />
|
|
|
|
</im.vector.app.core.platform.CheckableConstraintLayout>
|