40 lines
1.7 KiB
XML
40 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/diy"
|
|
android:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/diy_return"
|
|
android:background="@drawable/icon_back"
|
|
android:layout_width="@dimen/theme_navigation_size"
|
|
android:layout_height="@dimen/theme_navigation_size"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_18sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/theme_txt"
|
|
android:id="@+id/diy_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/diy_title"
|
|
android:layout_centerInParent="true"/>
|
|
<TextView
|
|
android:id="@+id/diy_right"
|
|
android:background="@drawable/diy_title_publish"
|
|
android:visibility="gone"
|
|
android:layout_width="@dimen/theme_navigation_size"
|
|
android:layout_height="@dimen/theme_navigation_size"
|
|
android:layout_marginRight="@dimen/title_diy_back_left"
|
|
android:layout_alignParentEnd="true"/>
|
|
<TextView
|
|
android:id="@+id/diy_pre_right"
|
|
android:background="@drawable/diy_preview"
|
|
android:visibility="gone"
|
|
android:layout_width="@dimen/theme_navigation_size"
|
|
android:layout_height="@dimen/theme_navigation_size"
|
|
android:layout_marginRight="@dimen/title_diy_pre_left"
|
|
android:layout_toStartOf="@+id/diy_right"/>
|
|
</RelativeLayout>
|