Advertisement
Sajib_Ahmed

RecyclerView main xml

Mar 28th, 2021
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:orientation="horizontal"
  7.    android:padding="10dp"
  8.    android:layout_height="match_parent"
  9.    tools:context=".MainActivity">
  10.  
  11.     <android.support.v7.widget.RecyclerView
  12.        android:layout_width="match_parent"
  13.        android:layout_height="match_parent"
  14.        android:id="@+id/recyclerView"
  15.  
  16.        ></android.support.v7.widget.RecyclerView>
  17.  
  18. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement