Blame view

res/layout/main_grid_item.xml 888 Bytes
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
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/relativeLayout"
      android:layout_width="120dip"
      android:layout_height="150dip"
      android:background="#ffffff" >
  
      <ImageView
          android:id="@+id/imageView1"
          android:layout_width="75dp"
          android:layout_height="75dp"
          android:layout_alignParentTop="true"
          android:layout_centerHorizontal="true"
          android:layout_marginTop="5dp"
          android:contentDescription="@string/app_name" />
  
      <TextView
          android:id="@+id/msg"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@+id/imageView1"
          android:layout_centerHorizontal="true"
          android:paddingBottom="20dp"
          android:textColor="#333333"
          android:textSize="22sp" />
      
  </RelativeLayout>