forked from dangilcal/Helldivers-app-movil
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/bg_helldivers_gradient">
|
|
|
|
<ImageButton
|
|
android:id="@+id/btn_volver"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:background="@drawable/btn_helldivers_secondary"
|
|
android:contentDescription="Volver"
|
|
android:padding="10dp"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/ic_back_arrow"
|
|
app:tint="#FFFFFF" />
|
|
|
|
<ImageView
|
|
android:id="@+id/qr_image"
|
|
android:layout_width="440dp"
|
|
android:layout_height="379dp"
|
|
android:layout_centerInParent="true"
|
|
android:background="#FFFFFF"
|
|
android:contentDescription="@string/qr_description"
|
|
android:padding="8dp"
|
|
android:scaleType="fitCenter" />
|
|
|
|
</RelativeLayout> |