Blame view

res/layout-land/date_picker_dialog.xml 1.17 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
31
32
33
34
35
36
  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="@dimen/date_picker_view_animator_height"
      android:gravity="center"
      android:orientation="horizontal" >
  
      <LinearLayout
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:layout_gravity="center"
          android:background="@color/white"
          android:orientation="vertical" >
  
          <LinearLayout
              android:layout_width="wrap_content"
              android:layout_height="0.0dip"
              android:layout_weight="1.0"
              android:orientation="vertical" >
  
              <include layout="@layout/date_picker_header_view" />
  
              <include layout="@layout/date_picker_selected_date" />
          </LinearLayout>
  
          <View
              android:layout_width="fill_parent"
              android:layout_height="1.0dip"
              android:background="@color/line_background" />
  
          <include layout="@layout/date_picker_done_button" />
      </LinearLayout>
  
      <include layout="@layout/date_picker_view_animator" />
  
  </LinearLayout>