0017eb76fb
- Added Import Seed View - Added Room objects for the Seeds
20 lines
741 B
XML
20 lines
741 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<Button
|
|
android:id="@+id/btnImportAccountSeed"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="import seed" />
|
|
|
|
<cy.agorise.crystalwallet.views.AccountSeedListView
|
|
android:id="@+id/vAccountSeedList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
</cy.agorise.crystalwallet.views.AccountSeedListView>
|
|
</RelativeLayout>
|