update 封装base库;集成flowwindow库;悬浮窗功能;赞助和分享;集成企微sdk;界面更新;添加待办修复;滚动手势优化;建群达到上限检查;兼容减号和括号搜索;应用保活;其他已知缺陷修复
This commit is contained in:
94
floatwindow/src/main/res/layout/layout_menu_right.xml
Normal file
94
floatwindow/src/main/res/layout/layout_menu_right.xml
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/fl_window_background_right"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#66333333">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/fl_window_measure_right"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="190dp"
|
||||
android:visibility="visible">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_start_right"
|
||||
android:layout_width="@dimen/float_size"
|
||||
android:layout_height="@dimen/float_size"
|
||||
android:layout_marginStart="@dimen/float_margin_start"
|
||||
android:src="@drawable/float_icon_record" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_shot_right"
|
||||
android:layout_width="@dimen/float_size"
|
||||
android:layout_height="@dimen/float_size"
|
||||
android:layout_marginTop="29dp"
|
||||
android:src="@drawable/float_icon_pause" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_back_right"
|
||||
android:layout_width="@dimen/float_size"
|
||||
android:layout_height="@dimen/float_size"
|
||||
android:layout_below="@id/iv_shot_right"
|
||||
android:layout_marginTop="2dp"
|
||||
android:src="@drawable/float_icon_home" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_logo_right"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_below="@id/iv_start_right"
|
||||
android:layout_marginStart="55dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:src="@mipmap/ic_launcher_round" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_settings_right"
|
||||
android:layout_width="@dimen/float_size"
|
||||
android:layout_height="@dimen/float_size"
|
||||
android:layout_below="@id/iv_logo_right"
|
||||
android:layout_marginStart="@dimen/float_margin_start"
|
||||
android:layout_marginTop="10dp"
|
||||
android:scaleX="1.05"
|
||||
android:scaleY="1.05"
|
||||
android:src="@drawable/float_icon_setting" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="190dp"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingEnd="2dp"
|
||||
android:paddingStart="0dp"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_stop_right"
|
||||
android:layout_width="@dimen/float_size"
|
||||
android:layout_height="@dimen/float_size"
|
||||
android:src="@drawable/float_icon_stop" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_resume_pause_right"
|
||||
android:layout_width="@dimen/float_size"
|
||||
android:layout_height="@dimen/float_size"
|
||||
android:layout_marginStart="-5dp"
|
||||
android:src="@drawable/float_icon_pause" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_logo_right2"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginStart="2dp"
|
||||
android:src="@mipmap/ic_launcher_round" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
</FrameLayout>
|
||||
Reference in New Issue
Block a user