123456789101112131415161718 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/ll_hide"
- android:visibility="gone"
- android:background="@color/hnyy_text_black">
- <TextView
- android:layout_width="140dp"
- android:layout_height="40dp"
- android:drawableLeft="@mipmap/hnyy_hide_float_eye_view"
- android:paddingLeft="5dp"
- android:textColor="@color/hnyy_white"
- android:text="@string/hnyy_close_float_view"
- android:gravity="center"
- />
-
- </LinearLayout>
|