xuxiuxi
2017-04-20 d2f697fa887e28b86d38332e2fbde930c54fb43f
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
<?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="104dp"
        android:layout_height="127dp"
        android:layout_alignParentBottom="true"
        android:scaleType="centerCrop"
        />
    <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/text_size_big"
        android:text="注册"
        android:layout_marginBottom="30dp"
        android:layout_marginRight="10dp"
        android:layout_alignParentBottom="true"
        android:textColor="@android:color/white"
        android:layout_alignParentRight="true"/>
 
</RelativeLayout>