mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 02:15:35 +03:00
Fixing margins in list items
This commit is contained in:
parent
92888b666c
commit
30effb781b
2 changed files with 10 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
|||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="16dp">
|
||||
android:paddingTop="14dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/sessionDetailsContentTitle"
|
||||
|
@ -12,8 +12,6 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/layout_horizontal_margin"
|
||||
android:ellipsize="end"
|
||||
android:lines="2"
|
||||
app:layout_constraintEnd_toStartOf="@id/sessionDetailsContentDescription"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
|
@ -40,6 +38,13 @@
|
|||
android:background="@drawable/divider_horizontal"
|
||||
app:layout_constraintEnd_toEndOf="@id/sessionDetailsContentDescription"
|
||||
app:layout_constraintStart_toStartOf="@id/sessionDetailsContentTitle"
|
||||
app:layout_constraintTop_toBottomOf="@id/sessionDetailsContentTitle" />
|
||||
app:layout_constraintTop_toBottomOf="@id/sessionDetailsContentBarrier" />
|
||||
|
||||
<androidx.constraintlayout.widget.Barrier
|
||||
android:id="@+id/sessionDetailsContentBarrier"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:barrierDirection="bottom"
|
||||
app:constraint_referenced_ids="sessionDetailsContentTitle, sessionDetailsContentDescription" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="16dp">
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/sessionDetailsHeaderTitle"
|
||||
|
|
Loading…
Reference in a new issue