Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/description_bar">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/content_image"
- android:layout_width="match_parent"
- android:layout_height="300dp"
- android:scaleType="centerCrop"/>
- <TextView
- android:id="@+id/content_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp"
- android:background="@color/title_bar"
- android:textSize="24sp"
- android:textColor="@color/standard_white"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/bar_feed"
- android:padding="8dp"
- android:orientation="horizontal">
- <ImageButton
- android:id="@+id/content_share_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:src="@drawable/selector_share_button"
- android:background="@color/transparent_white"/>
- <ImageButton
- android:id="@+id/content_comments_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:src="@drawable/selector_comment_button"
- android:background="@color/transparent_white"/>
- <ImageButton
- android:id="@+id/content_like_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:src="@drawable/selector_like_button"
- android:background="@color/transparent_white"/>
- </LinearLayout>
- <TextView
- android:id="@+id/content_complete_text"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="16dp"
- android:textSize="16sp"
- android:textColor="@color/standard_white"/>
- </LinearLayout>
- </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment