You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.3 KiB

4 years ago
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/switch_bg_holo_light"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@android:color/white"
android:gravity="center_vertical" >
<Button
android:id="@+id/btnCancel"
android:layout_width="60dp"
android:layout_height="34dp"
android:layout_centerVertical="true"
android:background="@android:color/transparent"
android:gravity="center"
android:text="@string/pickerview_cancel"
android:textColor="@drawable/wheel_timebtn" />
<TextView
android:id="@+id/tvEdtName"
android:layout_width="wrap_content"
android:layout_height="34dp"
android:layout_centerInParent="true"
android:layout_centerVertical="true"
android:textColor="#000000"
android:textSize="16sp"
android:gravity="center" />
<Button
android:id="@+id/btnSubmit"
android:layout_width="60dp"
android:layout_height="34dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@android:color/transparent"
android:gravity="center"
android:text="@string/pickerview_submit"
android:textColor="@drawable/wheel_timebtn" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#D8D3D3" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<include
android:id="@+id/optionspicker"
layout="@layout/include_optionspicker" />
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/optionspicker"
android:layout_alignTop="@id/optionspicker"
android:background="@drawable/bg_above_timepicker" />
</RelativeLayout>
</LinearLayout>