Blame view

footsafety/app/src/main/res/layout/item_layout_time_frame.xml 1.33 KB
f7a13682   “wangming”   项目初始化
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"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/time_frame_layout"
      android:layout_width="match_parent"
      android:layout_height="@dimen/seventy_height"
      android:layout_marginTop="@dimen/layout_marginTop_five"
      android:background="@color/whitecolor"
      android:orientation="vertical">
  
      <TextView
          android:id="@+id/time_frame_name"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_marginStart="@dimen/layout_marginstart_five"
          android:layout_marginTop="@dimen/layout_marginTop_twenty"
          android:textColor="@color/blackcolor"
          android:textSize="@dimen/fifteenText_size" />
  
      <Spinner
          android:id="@+id/active_inactive"
          android:layout_width="@dimen/seventy_width"
          android:layout_height="@dimen/thirty_height"
          android:layout_alignParentEnd="true"
          android:layout_centerVertical="true"
          android:layout_marginEnd="@dimen/layout_marginEnd_five"
          android:background="@drawable/item_gray_border_bg">
  
      </Spinner>
  
      <View
          android:layout_width="match_parent"
          android:layout_height="1dp"
          android:layout_alignParentBottom="true"
          android:background="@color/gray" />
  
  </RelativeLayout>