Blame view

footsafety/app/src/main/res/layout/item_layout_user_business.xml 1.4 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
37
38
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="@dimen/fifty_height"
      android:background="@color/whitecolor">
  
      <TextView
          android:id="@+id/business_nametxt"
          android:layout_width="wrap_content"
          android:layout_height="@dimen/twentyfive_height"
          android:layout_centerVertical="true"
          android:gravity="center"
          android:maxLines="1"
          android:paddingStart="@dimen/padding_start_twenty"
          android:text="@string/businessname_txt_users"
          android:textColor="@color/blacktxt"
          android:textSize="@dimen/fifteenText_size" />
  
      <ImageView
          android:id="@+id/delete_businessImg"
          android:layout_width="@dimen/thirty_width"
          android:layout_height="@dimen/thirty_height"
          android:layout_alignParentEnd="true"
          android:layout_centerVertical="true"
          android:layout_marginEnd="@dimen/layout_marginend_six"
          android:padding="@dimen/padding_six"
          android:rotation="45"
          android:src="@drawable/icon_plus"
          android:tint="@color/blacktxt" />
  
      <View
          android:id="@+id/line_view"
          android:layout_width="match_parent"
          android:layout_height="1dp"
          android:layout_alignParentBottom="true"
          android:background="@color/gray" />
  
  </RelativeLayout>