19 lines
750 B
XML
19 lines
750 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/bitcoin_address_qr_card"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/white"
|
|
android:foreground="?android:attr/selectableItemBackground">
|
|
|
|
<ImageView
|
|
android:id="@+id/bitcoin_address_qr"
|
|
android:layout_width="@dimen/wallet_address_qr_size"
|
|
android:layout_height="@dimen/wallet_address_qr_size"
|
|
android:layout_gravity="center"
|
|
android:contentDescription="@string/action_show_qr"
|
|
android:focusable="true"
|
|
android:padding="4dp"
|
|
android:scaleType="fitXY" />
|
|
|
|
</LinearLayout> |