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

14 lines
518 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-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>