| 123456789101112131415161718192021222324252627282930313233343536 |
- <?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:id="@+id/wg_address_tab_view_root"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="#ffffff"
- android:orientation="vertical"
- tools:ignore="ResourceName">
- <LinearLayout
- android:id="@+id/wg_address_tab_view_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical">
- <ImageView
- android:id="@+id/wg_address_tab_view_line"
- android:layout_width="wrap_content"
- android:layout_height="@dimen/space_4"
- android:background="#222" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="#e9e9e9"
- android:visibility="gone" />
- </LinearLayout>
|