Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.08 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:app="http://schemas.android.com/apk/res-auto"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="wrap_content"
  7.    android:orientation="vertical">
  8.  
  9.     <androidx.appcompat.widget.Toolbar
  10.        android:id="@+id/toolbar"
  11.        android:layout_width="match_parent"
  12.        android:layout_height="?attr/actionBarSize"
  13.        android:background="?attr/colorPrimary"
  14.        android:minHeight="?attr/actionBarSize"
  15.        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
  16.        android:visibility="gone"
  17.        app:elevation="4dp"
  18.        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
  19.  
  20.     <TextView
  21.        android:id="@+id/tv_offset"
  22.        android:layout_width="match_parent"
  23.        android:layout_height="wrap_content" />
  24.  
  25.     <androidx.recyclerview.widget.RecyclerView
  26.        android:id="@+id/rv_test"
  27.        android:layout_width="match_parent"
  28.        android:layout_height="wrap_content" />
  29.  
  30. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement