mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 09:25:49 +03:00
Fix / margin end-right missing for compatibility
This commit is contained in:
parent
2780ca30a8
commit
207579c59f
1 changed files with 4 additions and 2 deletions
|
@ -58,6 +58,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:text="@string/reject"
|
||||
app:layout_constraintEnd_toStartOf="@+id/inviteAcceptView"
|
||||
|
@ -69,6 +70,7 @@
|
|||
android:id="@+id/inviteAcceptView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="4dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:text="@string/accept"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
|
@ -77,9 +79,9 @@
|
|||
app:layout_constraintTop_toTopOf="@id/inviteRejectView" />
|
||||
|
||||
<Space
|
||||
android:layout_height="16dp"
|
||||
android:layout_width="match_parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/inviteAcceptView"/>
|
||||
android:layout_height="16dp"
|
||||
app:layout_constraintTop_toBottomOf="@id/inviteAcceptView" />
|
||||
|
||||
|
||||
</merge>
|
Loading…
Reference in a new issue