2018-03-15 20:12:46 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-10-08 03:03:59 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="cy.agorise.crystalwallet.fragments.TransactionsFragment">
|
|
|
|
|
2018-09-24 20:07:21 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvNobalances"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/You_dont_have_transactions"
|
|
|
|
android:textColor="@color/gray"
|
|
|
|
android:layout_marginTop="190dp"
|
|
|
|
android:layout_marginLeft="90dp"
|
|
|
|
android:textSize="15dp" />
|
|
|
|
|
2018-03-15 20:12:46 +00:00
|
|
|
<cy.agorise.crystalwallet.views.TransactionListView
|
2017-10-08 03:03:59 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-03-15 20:12:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/vTransactionListView" />
|
2017-10-08 03:03:59 +00:00
|
|
|
|
2018-03-15 20:12:46 +00:00
|
|
|
</FrameLayout>
|