Files
brave-core/android/java/res/layout/fragment_transaction.xml
T
2021-09-21 11:10:30 -04:00

129 lines
5.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView 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:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="90dp"
android:layout_height="wrap_content"
android:layout_marginTop="37dp"
android:layout_marginBottom="4dp"
android:paddingStart="24dp"
android:textColor="@color/wallet_text_color"
android:text="@string/gas_fee"
android:textSize="14sp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="vertical">
<TextView
android:id="@+id/edit_gas_fee"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:paddingStart="24dp"
android:textColor="@color/brave_blue_tint_color"
android:text="@string/edit"
android:clickable="true"
android:focusable="true"
android:textSize="14sp" />
<TextView
android:id="@+id/gas_fee_amount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:paddingStart="24dp"
android:textColor="@color/wallet_text_color"
android:textSize="14sp" />
<TextView
android:id="@+id/gas_fee_amount_fiat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="24dp"
android:textColor="@color/wallet_text_color"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_marginStart="30dp"
android:layout_marginEnd="30dp"
android:background="@color/wallet_text_color"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="90dp"
android:layout_height="wrap_content"
android:layout_marginTop="37dp"
android:layout_marginBottom="4dp"
android:paddingStart="24dp"
android:textColor="@color/wallet_text_color"
android:text="@string/total"
android:textSize="14sp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:paddingStart="24dp"
android:textColor="@color/wallet_text_color"
android:text="@string/amount_plus_gas"
android:textSize="14sp" />
<TextView
android:id="@+id/total_amount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:paddingStart="24dp"
android:textColor="@color/wallet_text_color"
android:textSize="14sp" />
<TextView
android:id="@+id/total_amount_fiat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="24dp"
android:textColor="@color/wallet_text_color"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>