Blame view

res/layout/select_date_time.xml 1.1 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical" >
  	<include layout="@layout/app_top_title" />
      <com.squareup.timessquare.CalendarPickerView
          android:id="@+id/calendar_view"
          android:layout_width="match_parent"
          android:layout_height="0dp"
          android:layout_weight="1"
          android:background="#FFFFFF"
          android:clipToPadding="false"
          android:paddingBottom="16dp"
          android:paddingLeft="16dp"
          android:paddingRight="16dp"
          android:scrollbarStyle="outsideOverlay" />
  
      <Button
          android:id="@+id/done_button"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:background="#5CACEE"
          android:paddingTop="6dp"
          android:layout_marginTop="12dp"
          android:paddingBottom="12dp"
          android:textColor="#ffffff"
          android:textSize="24dp"
          android:text="@string/btn_ok" />
  </LinearLayout>