Advertisement
erny_th

Skobbler issue

Sep 2nd, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.87 KB | None | 0 0
  1. <!-- layout_purchased_marker.xml -->
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>
  4. <FrameLayout
  5.    xmlns:android="http://schemas.android.com/apk/res/android"
  6.    android:layout_width="wrap_content"
  7.    android:layout_height="wrap_content">
  8.     <FrameLayout
  9.        android:layout_width="32dp"
  10.        android:layout_height="32dp"
  11.        android:background="@drawable/marker_circle_background_orange">
  12.         <com.censored.guide.view.TypefaceTextView
  13.            style="@style/TextStyle.Small"
  14.            android:layout_width="wrap_content"
  15.            android:layout_height="wrap_content"
  16.            android:text="871"
  17.            android:textColor="@color/white"
  18.            android:textSize="9dp"
  19.            android:id="@+id/text"
  20.            android:paddingLeft="8dp"
  21.            android:paddingTop="4dp"
  22.            android:paddingRight="8dp"
  23.            android:paddingBottom="4dp"
  24.            android:layout_gravity="center" />
  25.     </FrameLayout>
  26. </FrameLayout>
  27.  
  28. <!-- marker_circle_background_orange -->
  29.  
  30. <?xml version="1.0" encoding="utf-8"?>
  31. <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
  32.     <solid android:color="@color/orange2"/>
  33.     <stroke android:color="@color/white" android:width="1dp"/>
  34. </shape>
  35.  
  36. <!-- layout_preview_info_window -->
  37.  
  38. <?xml version="1.0" encoding="utf-8"?>
  39. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  40.    android:orientation="vertical"
  41.    android:layout_width="match_parent"
  42.    android:layout_height="match_parent"
  43.    android:gravity="center_horizontal">
  44.  
  45.     <FrameLayout
  46.        android:background="@drawable/shape_map_info_window"
  47.        android:layout_width="280dp"
  48.        android:layout_height="wrap_content"
  49.        android:paddingLeft="12dp"
  50.        android:paddingRight="12dp"
  51.        android:paddingTop="8dp"
  52.        android:paddingBottom="8dp">
  53.  
  54.         <LinearLayout
  55.            android:orientation="horizontal"
  56.            android:layout_width="match_parent"
  57.            android:layout_height="match_parent"
  58.            android:gravity="center_vertical">
  59.  
  60.             <LinearLayout
  61.                android:id="@+id/windowBody"
  62.                android:clickable="true"
  63.                android:layout_width="0dp"
  64.                android:layout_height="wrap_content"
  65.                android:layout_weight="1">
  66.  
  67.                 <ImageView
  68.                    android:layout_width="68dp"
  69.                    android:layout_height="68dp"
  70.                    android:id="@+id/locationImage"
  71.                    android:layout_marginRight="8dp"
  72.                    android:scaleType="centerCrop" />
  73.  
  74.                 <LinearLayout
  75.                    android:orientation="vertical"
  76.                    android:layout_width="0dp"
  77.                    android:layout_height="match_parent"
  78.                    android:layout_weight="1">
  79.  
  80.                     <com.censored.guide.view.TypefaceTextView
  81.                        style="@style/TextStyle.White"
  82.                        android:layout_width="match_parent"
  83.                        android:layout_height="0dp"
  84.                        android:text="79. Wahiawa Birthstones"
  85.                        android:id="@+id/itemTitle"
  86.                        android:layout_weight="1"
  87.                        android:padding="2dp" />
  88.  
  89.                     <LinearLayout
  90.                        android:orientation="horizontal"
  91.                        android:layout_width="wrap_content"
  92.                        android:layout_height="wrap_content">
  93.  
  94.                         <ImageView
  95.                            android:src="@drawable/icon_like_small"
  96.                            android:layout_width="22dp"
  97.                            android:layout_height="22dp"
  98.                            android:id="@+id/imageView7"
  99.                            android:layout_marginRight="4dp" />
  100.  
  101.                         <com.censored.guide.view.TypefaceTextView
  102.                            style="@style/TextStyle.White"
  103.                            android:textColor="@color/gray31"
  104.                            android:layout_width="wrap_content"
  105.                            android:layout_height="wrap_content"
  106.                            android:text="55"
  107.                            android:id="@+id/likeCountText"
  108.                            android:padding="2dp" />
  109.                     </LinearLayout>
  110.                 </LinearLayout>
  111.             </LinearLayout>
  112.  
  113.  
  114.             <FrameLayout
  115.                android:layout_width="40dp"
  116.                android:layout_height="40dp"
  117.                android:id="@+id/lockHolder"
  118.                android:clickable="true"
  119.                android:visibility="gone">
  120.  
  121.                 <ImageView
  122.                    android:layout_width="match_parent"
  123.                    android:layout_height="match_parent"
  124.                    android:id="@+id/imageView6"
  125.                    android:src="@drawable/icon_lock" />
  126.             </FrameLayout>
  127.  
  128.             <RelativeLayout
  129.                android:visibility="gone"
  130.                android:id="@+id/likeButton"
  131.                android:layout_height="wrap_content"
  132.                android:layout_width="wrap_content"
  133.                android:clickable="true">
  134.  
  135.                 <ImageView
  136.                    android:id="@+id/bigLike"
  137.                    android:layout_centerHorizontal="true"
  138.                    android:src="@drawable/icon_like"
  139.                    android:paddingTop="4dp"
  140.                    android:layout_width="wrap_content"
  141.                    android:layout_height="wrap_content" />
  142.  
  143.                 <com.censored.guide.view.TypefaceTextView
  144.                    android:id="@+id/likeText"
  145.                    style="@style/TextStyle.White"
  146.                    android:layout_below="@+id/bigLike"
  147.                    android:textColor="@color/gray31"
  148.                    android:layout_width="wrap_content"
  149.                    android:layout_height="wrap_content"
  150.                    android:text="@string/like_this"
  151.                    android:layout_marginBottom="-4dp"
  152.                    android:paddingTop="4dp" />
  153.  
  154.             </RelativeLayout>
  155.  
  156.             <FrameLayout
  157.                android:id="@+id/playButton"
  158.                android:layout_height="40dp"
  159.                android:layout_width="40dp"
  160.                android:clickable="true"
  161.                android:background="@drawable/play_button_background">
  162.                 <FrameLayout
  163.                    android:layout_width="match_parent"
  164.                    android:layout_height="match_parent">
  165.                     <ImageView
  166.                        android:src="@drawable/icon_play"
  167.                        android:layout_width="match_parent"
  168.                        android:layout_height="match_parent"
  169.                        android:layout_gravity="center" />
  170.                 </FrameLayout>
  171.  
  172.                 <FrameLayout
  173.                    android:background="@drawable/circle_background_selector"
  174.                    android:layout_width="match_parent"
  175.                    android:layout_height="match_parent"/>
  176.             </FrameLayout>
  177.         </LinearLayout>
  178.  
  179.     </FrameLayout>
  180.  
  181.     <ImageView
  182.        android:src="@drawable/info_arrow_down"
  183.        android:layout_width="wrap_content"
  184.        android:layout_height="wrap_content"
  185.        android:id="@+id/imageView5"
  186.        android:layout_gravity="center_horizontal" />
  187. </LinearLayout>
  188.  
  189. <!-- // play_button_background -->
  190.  
  191. <?xml version="1.0" encoding="utf-8"?>
  192. <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
  193.     <solid android:color="@color/orange2"/>
  194. </shape>
  195.  
  196. <!-- shape_map_info_window -->
  197. <?xml version="1.0" encoding="utf-8"?>
  198. <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
  199.     <corners android:radius="8dp"/>
  200.     <solid android:color="@color/black_info_window"/>
  201. </shape>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement