Advertisement
Guest User

Untitled

a guest
Apr 10th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.31 KB | None | 0 0
  1.  <FrameLayout
  2.        android:layout_width="match_parent"
  3.        android:layout_height="match_parent">
  4.  
  5.  
  6.     <LinearLayout
  7.        android:layout_width="match_parent"
  8.        android:layout_height="match_parent"
  9.        android:gravity="center_vertical"
  10.        android:orientation="vertical">
  11.  
  12.  
  13.         <ImageView
  14.            android:id="@+id/imageVerticalThumbnail"
  15.            android:layout_width="match_parent"
  16.            android:layout_height="0dp"
  17.            android:layout_weight="1"
  18.            android:background="@drawable/dr_placeholder"
  19.            android:scaleType="centerCrop"
  20.            tools:src="@tools:sample/avatars" />
  21.  
  22.         <LinearLayout
  23.            android:id="@+id/bottomBlockWrapper"
  24.            android:layout_width="match_parent"
  25.            android:layout_height="wrap_content"
  26.            android:clipToPadding="false"
  27.            android:gravity="center_vertical"
  28.            android:orientation="vertical"
  29.            android:paddingStart="16dp"
  30.            android:paddingTop="9dp"
  31.            android:paddingEnd="16dp"
  32.            android:paddingBottom="14dp">
  33.  
  34.             <TextView
  35.                android:id="@+id/textVerticalThumbnail"
  36.                style="@style/listItemTitleTextStyle"
  37.                android:layout_width="match_parent"
  38.                android:layout_height="wrap_content"
  39.                android:ellipsize="end"
  40.                android:includeFontPadding="false"
  41.                android:lines="1"
  42.                android:maxLines="1"
  43.                android:minLines="1"
  44.                tools:text="Новый человек Новый человек Новый человек" />
  45.  
  46.             <TextView
  47.                android:id="@+id/subscriptionTypeText"
  48.                style="@style/MonseratMediumText"
  49.                android:layout_width="match_parent"
  50.                android:layout_height="wrap_content"
  51.                android:ellipsize="end"
  52.                android:lines="1"
  53.                android:maxLines="1"
  54.                android:minLines="1"
  55.                android:textColor="#60ffffff"
  56.                android:textSize="13sp"
  57.                android:visibility="visible"
  58.                tools:text="Базовый"
  59.                tools:visibility="gone" />
  60.         </LinearLayout>
  61.     </LinearLayout>
  62. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement