Blame view

footsafety/app/src/main/res/layout/item_select_sync.xml 1.34 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"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/rl_item"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="@color/whitecolor"
      android:orientation="vertical">
  
      <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="horizontal">
  
          <TextView
              android:id="@+id/tv_select"
              android:layout_width="wrap_content"
              android:layout_height="@dimen/forty_height"
              android:gravity="center"
              android:paddingStart="@dimen/padding_start_ten"
              android:textColor="@color/blacktxt"
              android:textSize="@dimen/sixteenText_size" />
          <TextView
              android:id="@+id/tv_select_id"
              android:layout_width="wrap_content"
              android:layout_height="@dimen/forty_height"
              android:gravity="center"
              android:paddingStart="@dimen/padding_start_ten"
              android:textColor="@color/blacktxt"
              android:textSize="@dimen/sixteenText_size" />
      </LinearLayout>
  
      <View
          android:layout_width="match_parent"
          android:layout_height="@dimen/one_height"
          android:background="@color/yellowcolor" />
  </LinearLayout>