Blame view

res/layout/activity_about.xml 1.71 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
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
  <?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="match_parent"
      android:orientation="vertical" >
      <include layout="@layout/app_top_title" />
  
      <ScrollView
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_weight="1"
          android:paddingLeft="6dp"
          android:paddingRight="6dp"
          android:paddingTop="10dp"
          android:fillViewport="true" >
          <LinearLayout
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical">
          <TextView
              android:id="@+id/content"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:lineSpacingExtra="6dp"
              android:textSize="16sp"
              android:textColor="#222222"
              android:text="@string/about_str" />
          <TextView 
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:lineSpacingExtra="6dp"
              android:layout_marginTop="6dp"
              android:textSize="16sp"
              android:textColor="#222222"
              android:text="@string/about_str2"/>
          <TextView 
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_marginTop="6dp"
              android:lineSpacingExtra="6dp"
              android:textSize="16sp"
              android:textColor="#222222"
              android:text="@string/about_str3"/>
          </LinearLayout>
      </ScrollView>
  
  </LinearLayout>