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

44 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:background="@color/bg_list"
android:minHeight="?android:attr/listPreferredItemHeight"
android:orientation="vertical"
android:paddingBottom="@dimen/list_entry_padding"
android:paddingLeft="@dimen/space_medium"
android:paddingRight="@dimen/space_medium"
android:paddingTop="16dp">
<TextView
android:id="@+id/address_book_row_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="3"
android:singleLine="false"
android:textStyle="bold"
android:layout_marginBottom="4dp"
tools:text="(unlabeled)"
style="@style/Overline"/>
<TextView
android:id="@+id/address_book_row_address"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="XcJcu9C2y1MMuNjgjnyqfYCnPoK94D18oL"
style="@style/Overline.Secondary"/>
<TextView
android:id="@+id/address_book_row_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="@string/address_book_row_message_compromised_key"
android:textSize="@dimen/font_size_small"
style="@style/Body1.Medium.Red"
android:visibility="gone"
tools:visibility="visible" />
</LinearLayout>