72 lines
2.6 KiB
XML
72 lines
2.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"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/app_bar"
|
|
layout="@layout/app_bar_general"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0px"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@color/colorPrimary"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:text="@string/address_book_list_receiving_title"
|
|
style="@style/TwoPanesScreenSubtitle" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0px"
|
|
android:layout_weight="1"
|
|
android:background="@color/bg_bright"
|
|
android:foreground="@drawable/view_shadow_bottom"
|
|
android:foregroundGravity="top|fill_horizontal">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/wallet_addresses_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0px"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@color/colorPrimary"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:text="@string/address_book_list_sending_title"
|
|
style="@style/TwoPanesScreenSubtitle" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0px"
|
|
android:layout_weight="1"
|
|
android:background="@color/bg_bright"
|
|
android:foreground="@drawable/view_shadow_bottom"
|
|
android:foregroundGravity="top|fill_horizontal">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/sending_addresses_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |