12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="@dimen/fragment_common_width"
- android:layout_height="@dimen/fragment_forget_pwd_height"
- android:layout_gravity="center"
- android:background="#ffffff"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:id="@id/please_call_customer_service_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/please_call_customer_service"
- android:textSize="10sp"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:text="@string/please_forgive"
- android:textSize="10sp"/>
- <Button
- android:id="@id/back_login"
- style="@style/btn_common"
- android:background="@drawable/selector_btn_deep_green"
- android:text="@string/back_login"/>
- </LinearLayout>
|