12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="10dp"
- android:layout_marginTop="10dp"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/select_sim_imageview"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:minHeight="30dp"
- android:minWidth="30dp" />
- <!-- Gionee < changwy > <2014-02-12> modify for CR01029116 begin -->
- <TextView
- android:id="@+id/select_sim_textview"
- style="@style/gn_account_TextSize_Normal"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="20dp"
- android:textColor="@color/gn_account_main_body_color" />
- <!-- Gionee < changwy > <2014-02-12> modify for CR01029116 end -->
- </LinearLayout>
- </LinearLayout>
|