123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="@dimen/left_width"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:background="@color/include_left_whale_bg">
- <ImageView
- android:layout_width="@dimen/iv_left_jq_game_width"
- android:layout_height="@dimen/iv_left_jq_game_height"
- android:layout_centerInParent="true"
- android:background="@drawable/iv_left_whale"/>
- <TextView
- android:id="@id/customer_service_phone_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="6dp"
- android:maxLines="1"
- android:textColor="#ffffff"
- android:textSize="9sp"/>
- </RelativeLayout>
|