You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.9 KiB
87 lines
2.9 KiB
5 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
~ Copyright (c) 2020 Cobo
|
||
|
~
|
||
|
~ This program is free software: you can redistribute it and/or modify
|
||
|
~ it under the terms of the GNU General Public License as published by
|
||
|
~ the Free Software Foundation, either version 3 of the License, or
|
||
|
~ (at your option) any later version.
|
||
|
~
|
||
|
~ This program is distributed in the hope that it will be useful,
|
||
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
~ GNU General Public License for more details.
|
||
|
~
|
||
|
~ You should have received a copy of the GNU General Public License
|
||
|
~ in the file COPYING. If not, see <http://www.gnu.org/licenses/>.
|
||
|
-->
|
||
|
|
||
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
||
|
<data>
|
||
|
|
||
|
<import type="android.text.TextUtils" />
|
||
|
|
||
|
<variable
|
||
|
name="viewModel"
|
||
|
type="com.cobo.cold.viewmodel.SetupVaultViewModel" />
|
||
|
</data>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<com.cobo.cold.ui.views.StepView
|
||
|
android:id="@+id/step"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="34dp"
|
||
|
app:step="3" />
|
||
|
|
||
5 years ago
|
<TextView
|
||
5 years ago
|
android:layout_width="wrap_content"
|
||
5 years ago
|
android:layout_height="wrap_content"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="17sp"
|
||
|
android:textStyle="bold"
|
||
|
android:layout_marginTop="32dp"
|
||
|
android:text="@string/choose_watch_only_wallet"
|
||
|
/>
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/list"
|
||
|
android:name="com.cobo.cold.ui.fragment.setting.ChooseWatchWalletFragment"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="12dp"
|
||
|
/>
|
||
|
|
||
|
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="12sp"
|
||
|
android:textColor="@color/white40"
|
||
|
android:text="@string/switch_watch_only_wallet_guide"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_margin="16dp"/>
|
||
|
<Space
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_weight="1"/>
|
||
5 years ago
|
|
||
|
<Button
|
||
|
android:id="@+id/complete"
|
||
|
style="@style/AcceptButton"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_marginHorizontal="16dp"
|
||
5 years ago
|
android:layout_marginBottom="16dp"
|
||
5 years ago
|
android:text="@string/complete" />
|
||
|
|
||
|
|
||
|
</LinearLayout>
|
||
|
</layout>
|