42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@color/bg_ebebeb"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:background="#feaa06"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?android:attr/actionBarSize">
|
|
<ImageView
|
|
android:id="@+id/backImageView"
|
|
android:background="@drawable/ripple"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_back"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/text_size_26"
|
|
android:textColor="@color/color_title_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/title_my_post"
|
|
android:layout_centerInParent="true"/>
|
|
<ImageView
|
|
android:id="@+id/postImageView"
|
|
android:background="@drawable/ripple"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_post"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
<FrameLayout
|
|
android:id="@+id/contentFrame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/dp_50"
|
|
android:layout_marginRight="@dimen/dp_50"/>
|
|
</LinearLayout>
|