Files
AndroidJava/dash-wallet/wallet/res/layout/invite_friend_hint_view.xml
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

42 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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/invite_friend_hint"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:background="?attr/selectableItemBackground"
android:orientation="vertical"
tools:context="de.schildbach.wallet.ui.dashpay.ContactsFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="25dp"
android:layout_marginEnd="25dp"
android:gravity="center"
android:textAlignment="gravity"
android:padding="12dp"
android:text="@string/invitation_notifications_hint1_or" />
<ImageView
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_gravity="center_horizontal"
android:layout_margin="12dp"
app:srcCompat="@drawable/ic_invite_envelope"
tools:ignore="ContentDescription" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="25dp"
android:layout_marginEnd="25dp"
android:gravity="center"
android:textAlignment="gravity"
android:padding="12dp"
android:text="@string/invitation_notifications_hint1"
android:textColor="@color/dash_blue" />
</LinearLayout>