Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.50 KB | None | 0 0
  1.  
  2. <RelativeLayout
  3.     android:layout_width="fill_parent"
  4.     android:layout_height="fill_parent"
  5.     android:fitsSystemWindows="true"
  6.    >
  7.  
  8.     <com.example.k.guides4art20.MapHidder.SlidingUpPanelLayout
  9.         android:id="@+id/slidingLayout"
  10.         android:gravity="bottom"
  11.         app:shadowHeight="0dp"
  12.         app:paralaxOffset="@dimen/paralax_offset"
  13.         android:layout_width="match_parent"
  14.         android:layout_height="match_parent">
  15.  
  16.         <FrameLayout
  17.             android:gravity="top"
  18.             android:layout_width="fill_parent"
  19.             android:layout_height="fill_parent"
  20.             android:id="@+id/fl">
  21.             <fragment xmlns:map="http://schemas.android.com/apk/res-auto"
  22.                 android:id="@+id/map"
  23.                 android:name="com.google.android.gms.maps.SupportMapFragment"
  24.                 tools:context="com.example.k.guides4art20.MapsActivity"
  25.                 android:layout_width="fill_parent"
  26.                 android:layout_height="fill_parent"
  27.                 />
  28.         </FrameLayout>
  29.         <RelativeLayout
  30.             android:layout_below="@+id/fl"
  31.             android:id="@+id/slidingContainer"
  32.             android:layout_width="fill_parent"
  33.             android:layout_height="fill_parent"
  34.             android:layout_alignParentBottom="true">
  35.         <View
  36.             android:id="@+id/transparentView"
  37.             android:visibility="gone"
  38.             android:layout_width="fill_parent"
  39.             android:layout_height="@dimen/map_height"
  40.             android:layout_alignParentTop="true" />
  41.  
  42.         <View
  43.             android:id="@+id/whiteSpaceView"
  44.             android:visibility="gone"
  45.             android:background="@android:color/darker_gray"
  46.             android:layout_marginTop="@dimen/map_height"
  47.             android:layout_width="match_parent"
  48.             android:layout_height="match_parent"/>
  49.  
  50.         <com.example.k.guides4art20.MapHidder.LockableListView
  51.             android:id="@+id/museumList"
  52.             android:cacheColorHint="@android:color/white"
  53.             android:drawSelectorOnTop="true"
  54.             android:dividerHeight="@dimen/divider_height"
  55.             android:divider="@android:color/darker_gray"
  56.             android:background="@android:color/transparent"
  57.             android:layout_width="match_parent"
  58.             android:layout_height="match_parent"
  59.             android:smoothScrollbar="false" />
  60.         </RelativeLayout>
  61.     </com.example.k.guides4art20.MapHidder.SlidingUpPanelLayout>
  62. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement