Blame view

footsafety/app/src/main/res/layout/item_text.xml 805 Bytes
f7a13682   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?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="wrap_content"
      android:orientation="vertical"
      android:id="@+id/rl_item"
      android:background="@color/whitecolor">
      <TextView
          android:id="@+id/tv_select"
          android:paddingStart="@dimen/padding_start_ten"
          android:layout_width="wrap_content"
          android:layout_height="@dimen/forty_height"
          android:gravity="center"
          android:textColor="@color/blacktxt"
          android:textSize="@dimen/sixteenText_size" />
      <View
          android:layout_width="match_parent"
          android:layout_height="@dimen/one_height"
          android:background="@color/yellowcolor"/>
  
  </LinearLayout>