133 lines
No EOL
5.1 KiB
XML
133 lines
No EOL
5.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<!--<LinearLayout-->
|
|
<!--android:layout_width="match_parent"-->
|
|
<!--android:layout_height="56dp">-->
|
|
|
|
<!--<ImageButton-->
|
|
<!--android:id="@+id/btnBack"-->
|
|
<!--android:layout_width="56dp"-->
|
|
<!--android:layout_height="56dp"-->
|
|
<!--android:layout_gravity="center_vertical"-->
|
|
<!--android:layout_marginLeft="16dp"-->
|
|
<!--android:layout_marginRight="16dp"-->
|
|
<!--android:scaleType="centerInside"-->
|
|
<!--android:tint="@color/color_white"-->
|
|
<!--android:background="?android:selectableItemBackground"-->
|
|
<!--android:src="@drawable/ic_action_flag_dark" />-->
|
|
<!---->
|
|
<!--</LinearLayout>-->
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:contentInsetStart="72dp"
|
|
android:contentInsetLeft="72dp"
|
|
app:contentInsetLeft="72dp"
|
|
app:contentInsetStart="72dp"
|
|
android:background="?attr/actionModeBackground"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:descendantFocusability="beforeDescendants"
|
|
android:focusableInTouchMode="true"
|
|
android:background="?attr/actionModeBackground">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="16dp"
|
|
android:scaleType="centerInside"
|
|
android:tint="@color/color_white"
|
|
android:layout_marginTop="24dp"
|
|
android:src="@drawable/ic_action_flag_dark" />
|
|
|
|
<android.support.v7.widget.AppCompatEditText
|
|
android:id="@+id/name"
|
|
android:theme="@style/WhiteControls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:textColor="@color/color_white"
|
|
android:textColorHint="@color/white_80_transparent"
|
|
android:textSize="@dimen/default_list_text_size_large"
|
|
android:hint="@string/quick_action_name_hint"
|
|
android:maxLines="1"
|
|
android:layout_marginLeft="-4dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_alignLeft="@+id/title"
|
|
android:layout_below="@+id/title"/>
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:textColor="@color/white_50_transparent"
|
|
android:textSize="@dimen/default_sub_text_size"
|
|
android:text="@string/shared_string_name"
|
|
android:layout_marginRight="16dp"
|
|
android:maxLines="1"
|
|
android:layout_marginLeft="32dp"
|
|
android:layout_toEndOf="@+id/image"
|
|
android:layout_toRightOf="@+id/image" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/spinnerListBackground"
|
|
android:layout_marginBottom="56dp">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/container"/>
|
|
</ScrollView>
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:scaleType="fitXY"
|
|
android:layout_gravity="top"
|
|
android:src="@drawable/bg_shadow_list_bottom"/>
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:scaleType="fitXY"
|
|
android:layout_gravity="bottom"
|
|
android:layout_marginBottom="56dp"
|
|
android:src="@drawable/bg_shadow_list_top"/>
|
|
|
|
<Button
|
|
android:id="@+id/btnApply"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:text="Apply"
|
|
android:textAllCaps="true"
|
|
android:textColor="@color/color_white"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom"
|
|
android:foreground="?android:selectableItemBackground"
|
|
android:background="@color/dashboard_blue"/>
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout> |