xuxiuxi
2017-05-11 109ffe9a777658936a38d0c146579a67c60a0d17
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_home_bottom_register_cell_relative_layout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
 
    <com.facebook.drawee.view.SimpleDraweeView
        android:id="@+id/fragment_home_bottom_register_cell_photo"
        android:layout_width="@dimen/w122dp"
        android:layout_height="@dimen/h127dp"
        android:layout_alignParentBottom="true"
        android:scaleType="centerCrop"
        android:paddingTop="@dimen/h15dp"
        android:paddingRight="@dimen/w5dp"
        android:paddingLeft="@dimen/w5dp"
        />
    <TextView
        android:id="@+id/fragment_home_bottom_register_cell_to_register"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/rounded_textview"
        android:gravity="center"
        android:textSize="@dimen/w16dp"
        android:text="注册"
        android:layout_marginBottom="@dimen/h20dp"
        android:layout_marginRight="@dimen/w10dp"
        android:layout_alignParentBottom="true"
        android:textColor="@android:color/white"
        android:layout_alignParentRight="true"/>
 
</RelativeLayout>