Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <FrameLayout
  2.        android:layout_width="match_parent"
  3.        android:layout_height="match_parent"
  4.        android:id="@+id/container">
  5.        
  6.         //== Some other layouts
  7.        
  8.         <com.mypackage.CategoriesSlideView
  9.            android:id="@+id/categories"
  10.            android:layout_width="220dip"
  11.            android:layout_height="match_parent"
  12.            android:background="@color/light_dark_grey"
  13.            android:orientation="vertical"
  14.            android:paddingLeft="20dip"
  15.            android:paddingRight="10dip"
  16.            android:paddingStart="20dip"
  17.            android:paddingEnd="10dip"
  18.            android:paddingTop="5dip">
  19.             <ListView
  20.                android:layout_width="match_parent"
  21.                android:layout_height="match_parent"
  22.                android:cacheColorHint="@color/transparent"
  23.                android:scrollbars="none"
  24.                android:id="@+id/cat_list"></ListView>
  25.         </com.mypackage.CategoriesSlideView>
  26.        
  27.     </FrameLayout>