12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <!-- 退出确认页面 -->
- <LinearLayout
- android:id="@+id/ixunqu_linearLayout1"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginTop="10dp"
- android:orientation="vertical"
- android:gravity="center" >
- <TextView
- android:id="@+id/ixunqu_textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:textSize="20dp"
- android:textColor="#8C8C8C"
- android:text="@string/xunqu_bind_phone_text" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ixunqu_linearLayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_below="@+id/ixunqu_linearLayout1"
- android:layout_marginTop="20dp"
- android:weightSum="2" >
- <Button
- android:id="@+id/xunqu_bind_phone_btn_back"
- android:layout_width="0dp"
- android:layout_height="40dp"
- android:layout_marginBottom="10dp"
- android:layout_weight="1"
- android:text="@string/xunqu_bind_phone_btn_back"
- android:textColor="#000000"
- android:layout_marginLeft="12dp"
- android:layout_marginRight="12dp"
- android:background="@drawable/xunqu_button_gray"
- android:textSize="18sp" />
- <Button
- android:id="@+id/xunqu_bind_phone_btn_ok"
- android:layout_width="0dp"
- android:layout_height="40dp"
- android:layout_marginBottom="10dp"
- android:layout_weight="1"
- android:text="@string/xunqu_bind_phone_btn_ok"
- android:background="@drawable/ixunqu_button_blue"
- android:layout_marginLeft="12dp"
- android:layout_marginRight="12dp"
- android:textColor="#FFFFFF"
- android:textSize="18sp" />
- </LinearLayout>
- </RelativeLayout>
|