39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:animateLayoutChanges="true"
|
|
android:background="@color/background_primary"
|
|
android:orientation="vertical"
|
|
tools:context="de.schildbach.wallet.ui.payments.PaymentsFragment">
|
|
|
|
<androidx.compose.ui.platform.ComposeView
|
|
android:id="@+id/tabs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="30dp"
|
|
android:layout_marginHorizontal="15dp"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintTop_toBottomOf="@id/tabs"
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/close_button"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_marginBottom="6dp"
|
|
android:src="@drawable/ic_payments_active"
|
|
android:background="@drawable/rounded_background"
|
|
android:theme="@style/BottomActionButtonBackground"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |