crystal-wallet-android/app/src/main/res/layout/fragment_contacts.xml

24 lines
873 B
XML
Raw Normal View History

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="cy.agorise.crystalwallet.fragments.ContactsFragment">
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_contacts"
android:textColor="@color/gray"
android:layout_marginTop="190dp"
android:layout_marginLeft="100dp"
2018-09-24 20:07:21 +00:00
android:textSize="15dp" />
2018-07-10 21:19:10 +00:00
<android.support.v7.widget.RecyclerView
2018-07-10 22:43:40 +00:00
android:id="@+id/rvContacts"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-07-10 21:19:10 +00:00
tools:listitem="@layout/contact_list_item" />
</FrameLayout>