Blame view

footsafety/app/src/main/res/layout/activity_labels.xml 1.96 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      xmlns:tools="http://schemas.android.com/tools"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      tools:context=".activities.lables.LabelsActivity">
  
      <ImageView
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:scaleType="centerCrop"
          android:src="@mipmap/bg" />
  
  
      <LinearLayout
          android:id="@+id/rl_toollayout"
          android:layout_width="match_parent"
          android:layout_height="@dimen/fifty_fiveheight"
          android:orientation="horizontal">
  
          <ImageView
              android:id="@+id/back_icon"
              android:layout_width="@dimen/forty_fivewidth"
              android:layout_height="match_parent"
              android:padding="@dimen/padding_ten"
              android:src="@drawable/icon_back" />
  
      </LinearLayout>
  
      <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:layout_below="@+id/rl_toollayout"
          android:gravity="center_horizontal"
          android:orientation="vertical">
  
          <ImageView
              android:layout_width="@dimen/seventy_width"
              android:layout_height="@dimen/seventy_height"
              android:layout_marginTop="@dimen/layout_marginTop_fifteen"
              android:src="@drawable/icon_smile"
              android:tint="@color/yellowcolor" />
  
          <TextView
              android:layout_width="@dimen/twoHundred_ten_width"
              android:layout_height="wrap_content"
              android:layout_marginTop="@dimen/fifty_height"
              android:text="@string/labels_comingsoontxt"
              android:textAlignment="center"
              android:textColor="@color/whitecolor"
              android:textSize="@dimen/twentyText_size" />
  
      </LinearLayout>
  
  </RelativeLayout>