1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="utf-8"?><!--
- ~ Copyright (C) 2015 pengjianbo(pengjianbosoft@gmail.com), Inc.
- ~
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <LinearLayout
- android:id="@+id/ll_menu"
- android:layout_width="wrap_content"
- android:layout_height="45dp"
- android:background="@drawable/zk_menu_bg"
- android:gravity="center"
- android:alpha="0.7"
- android:orientation="horizontal"
- android:visibility="gone">
- <TextView
- android:id="@+id/tv_account"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:drawableTop="@drawable/zk_menu_account"
- android:padding="3dp"
- android:text="账号"
- android:textColor="#FFFFFF"
- android:textSize="11sp" />
- <TextView
- android:id="@+id/tv_feedback"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:drawableTop="@drawable/zk_menu_fb"
- android:padding="3dp"
- android:text="客服"
- android:textColor="#FFFFFF"
- android:visibility="gone"
- android:textSize="11sp" />
- </LinearLayout>
- <FrameLayout
- android:id="@+id/pj_float_view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <ImageView
- android:id="@+id/pj_float_view_icon_imageView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center" />
- <ImageView
- android:id="@+id/pj_float_view_icon_notify"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/zk_anim_background" />
- </FrameLayout>
- </FrameLayout>
|