47 lines
No EOL
1.6 KiB
XML
47 lines
No EOL
1.6 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="60dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:padding="16dp"
|
|
android:text="@string/wallet_dialog_choose_trade_action"
|
|
android:textColor="@color/darkGray2"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_btn_buy"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:clickable="true"
|
|
android:drawablePadding="32dp"
|
|
android:focusable="true"
|
|
android:gravity="center_vertical"
|
|
android:padding="16dp"
|
|
android:text="@string/wallet_button_buy"
|
|
android:textColor="@color/darkGray3"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold"
|
|
app:drawableStartCompat="@drawable/ic_arrow_up" />
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_btn_sell"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:clickable="true"
|
|
android:drawablePadding="32dp"
|
|
android:focusable="true"
|
|
android:gravity="center_vertical"
|
|
android:padding="16dp"
|
|
android:text="@string/wallet_button_sell"
|
|
android:textColor="@color/darkGray3"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold"
|
|
app:drawableStartCompat="@drawable/ic_arrow_down" />
|
|
|
|
</LinearLayout> |