12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/ej_float_root_rl"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <LinearLayout
- android:id="@+id/ej_float_menu_ll"
- android:layout_width="wrap_content"
- android:layout_height="@dimen/dp_45"
- android:background="@drawable/ej_shape_float_bg"
- android:gravity="center"
- android:orientation="horizontal"
- android:visibility="gone">
- <TextView
- android:id="@+id/ej_float_user_tv"
- android:layout_width="@dimen/dp_35"
- android:layout_height="@dimen/dp_35"
- android:background="@drawable/ej_ic_float_user" />
- <TextView
- android:id="@+id/ej_float_gs_tv"
- android:layout_width="@dimen/dp_35"
- android:layout_height="@dimen/dp_35"
- android:background="@drawable/ej_ic_float_customer_service_normal" />
- <TextView
- android:id="@+id/ej_float_gift_bag_tv"
- android:layout_width="@dimen/dp_35"
- android:layout_height="@dimen/dp_35"
- android:background="@drawable/ej_ic_float_gift_bag_normal" />
- <TextView
- android:id="@+id/ej_float_recommend_tv"
- android:layout_width="@dimen/dp_35"
- android:layout_height="@dimen/dp_35"
- android:background="@drawable/ej_ic_float_recommend" />
- <TextView
- android:id="@+id/ej_float_announcement_tv"
- android:layout_width="@dimen/dp_35"
- android:layout_height="@dimen/dp_35"
- android:background="@drawable/ej_ic_float_announcement_normal" />
- <TextView
- android:id="@+id/ej_float_close_tv"
- android:layout_width="@dimen/dp_35"
- android:layout_height="@dimen/dp_35"
- android:background="@drawable/ej_ic_float_close" />
- </LinearLayout>
- <FrameLayout
- android:id="@+id/ej_float_logo_fl"
- android:layout_width="@dimen/dp_45"
- android:layout_height="@dimen/dp_45"
- android:layout_gravity="center_vertical">
- <ImageView
- android:id="@+id/ej_float_logo_iv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="left|center_vertical"
- android:src="@drawable/ej_ic_float_logo" />
- </FrameLayout>
- </FrameLayout>
|