12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="@dimen/right_common_width"
- android:layout_height="wrap_content"
- android:layout_marginTop="7dp"
- android:orientation="vertical"
- tools:showIn="@layout/fragment_phone_login">
- <ImageView
- android:id="@id/back_iv"
- android:layout_width="36dp"
- android:layout_height="18dp"
- android:layout_alignParentLeft="true"
- android:paddingRight="23dp"
- android:src="@drawable/iv_back"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="18dp"
- android:gravity="center">
- <View
- style="@style/view_line_common"/>
- <TextView
- android:id="@id/title_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/tv_please_select_the_login_method_margin_left"
- android:layout_marginRight="@dimen/tv_please_select_the_login_method_margin_right"
- android:textColor="#494949"
- android:textSize="12sp"/>
- <View
- style="@style/view_line_common"/>
- </LinearLayout>
- </LinearLayout>
|